pcb demo code.
[ealt-edge.git] / example-apps / PDD / frontend-src / src / app / app.component.ts
diff --git a/example-apps/PDD/frontend-src/src/app/app.component.ts b/example-apps/PDD/frontend-src/src/app/app.component.ts
new file mode 100644 (file)
index 0000000..9df7fc6
--- /dev/null
@@ -0,0 +1,18 @@
+import { Component } from '@angular/core';
+import { ToolbarService } from './toolbar/toolbar.service';
+
+@Component({
+  selector: 'app-root',
+  templateUrl: './app.component.html',
+  styleUrls: ['./app.component.scss']
+})
+export class AppComponent {
+  title = 'EliotUI';
+
+  constructor(public toolbarService: ToolbarService) {}
+
+  ngOnInit() {
+    this.toolbarService.show();
+  }
+
+}