import { Component, OnInit, ViewEncapsulation }
from '@angular/core';
import { MenuItem } from 'primeng/api';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
items: MenuItem[];
ngOnInit() {
this.items = [
{
label: 'DSA',
items: [
{
label: 'Stack',
},
{
label: 'Array',
},
{
label: 'Linked List',
},
],
},
{
label: 'Computer Network',
},
{
label: 'Operating System',
items: [
{
label: 'Batch OS',
},
{
label: 'Real-Time OS',
},
{
label: 'Time Sharing OS',
},
],
},
{
label: 'Theory of Computation',
},
{
label: 'Exit',
},
];
}
}