Home page carousel
[eliot.git] / blueprints / common / eliot-ui / frontend-src / src / app / app.component.ts
index 2aa6759..9df7fc6 100644 (file)
@@ -1,4 +1,5 @@
 import { Component } from '@angular/core';
+import { ToolbarService } from './toolbar/toolbar.service';
 
 @Component({
   selector: 'app-root',
@@ -8,5 +9,10 @@ import { Component } from '@angular/core';
 export class AppComponent {
   title = 'EliotUI';
 
+  constructor(public toolbarService: ToolbarService) {}
+
+  ngOnInit() {
+    this.toolbarService.show();
+  }
 
 }