2021-12-29 06:28:51 +00:00
|
|
|
import { Component, OnDestroy } from '@angular/core';
|
2021-12-09 14:24:42 +00:00
|
|
|
import { AppMainComponent } from './app.main.component';
|
|
|
|
import { Subscription } from 'rxjs';
|
|
|
|
import { MenuItem } from 'primeng/api';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-topbar',
|
|
|
|
templateUrl: './app.topbar.component.html'
|
|
|
|
})
|
2022-01-07 12:40:43 +00:00
|
|
|
export class AppTopBarComponent {
|
2021-12-09 14:24:42 +00:00
|
|
|
|
|
|
|
items: MenuItem[];
|
|
|
|
|
2022-01-07 12:40:43 +00:00
|
|
|
constructor(public appMain: AppMainComponent) { }
|
2021-12-09 14:24:42 +00:00
|
|
|
}
|