Fixed webapp build and error message.
[src/xds/xds-agent.git] / webapp / src / app / app-topnav / app-topnav.component.ts
diff --git a/webapp/src/app/app-topnav/app-topnav.component.ts b/webapp/src/app/app-topnav/app-topnav.component.ts
new file mode 100644 (file)
index 0000000..9ba4021
--- /dev/null
@@ -0,0 +1,13 @@
+import { Component, ViewEncapsulation } from '@angular/core';
+
+@Component({
+    selector: 'app-topnav',
+    templateUrl: './app-topnav.component.html',
+    styleUrls: ['./app-topnav.component.css'],
+    encapsulation: ViewEncapsulation.None
+})
+export class AppTopnavComponent {
+    public isCollapsed = false;
+
+    constructor() { }
+}