16 lines
395 B
TypeScript
16 lines
395 B
TypeScript
import { Component, OnDestroy } from '@angular/core';
|
|
import { AppMainComponent } from './app.main.component';
|
|
import { Subscription } from 'rxjs';
|
|
import { MenuItem } from 'primeng/api';
|
|
|
|
@Component({
|
|
selector: 'app-topbar',
|
|
templateUrl: './app.topbar.component.html'
|
|
})
|
|
export class AppTopBarComponent {
|
|
|
|
items: MenuItem[];
|
|
|
|
constructor(public appMain: AppMainComponent) { }
|
|
}
|