Fixed webapp build and error message.
[src/xds/xds-agent.git] / webapp / src / app / app-topnav / app-topnav.component.ts
1 import { Component, ViewEncapsulation } from '@angular/core';
2
3 @Component({
4     selector: 'app-topnav',
5     templateUrl: './app-topnav.component.html',
6     styleUrls: ['./app-topnav.component.css'],
7     encapsulation: ViewEncapsulation.None
8 })
9 export class AppTopnavComponent {
10     public isCollapsed = false;
11
12     constructor() { }
13 }