Add selectors

This commit is contained in:
Çetin
2025-01-03 11:53:59 +03:00
parent 24f25308c6
commit b2c1a1ca70
5 changed files with 9 additions and 1 deletions
@@ -4,6 +4,7 @@ import { MenuModule } from 'primeng/menu';
@Component({
standalone:true,
selector: 'app-notifications-widget',
imports: [
ButtonModule,
MenuModule,
@@ -55,5 +56,8 @@ import { MenuModule } from 'primeng/menu';
</div>`,
})
export class NotificationsWidget {
items = [
{ label: 'Add New', icon: 'pi pi-fw pi-plus' },
{ label: 'Remove', icon: 'pi pi-fw pi-trash' }
];
}