15 lines
356 B
TypeScript
15 lines
356 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { MenuItem } from 'primeng/api';
|
||
|
import { LayoutService } from "./service/app.layout.service";
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-topbar',
|
||
|
templateUrl: './app.topbar.component.html'
|
||
|
})
|
||
|
export class AppTopBarComponent {
|
||
|
|
||
|
items!: MenuItem[];
|
||
|
|
||
|
constructor(public layoutService: LayoutService) { }
|
||
|
}
|