1 import { Component } from '@angular/core';
2 import { ToolbarService } from './toolbar/toolbar.service';
6 templateUrl: './app.component.html',
7 styleUrls: ['./app.component.scss']
9 export class AppComponent {
12 constructor(public toolbarService: ToolbarService) {}
15 this.toolbarService.show();