Home page carousel
[eliot.git] / blueprints / common / eliot-ui / frontend-src / src / app / app.component.ts
1 import { Component } from '@angular/core';
2 import { ToolbarService } from './toolbar/toolbar.service';
3
4 @Component({
5   selector: 'app-root',
6   templateUrl: './app.component.html',
7   styleUrls: ['./app.component.scss']
8 })
9 export class AppComponent {
10   title = 'EliotUI';
11
12   constructor(public toolbarService: ToolbarService) {}
13
14   ngOnInit() {
15     this.toolbarService.show();
16   }
17
18 }