Notifications Sidebar
This section describes the BfmNotificationsSidebarComponent component.
Composition
The BfmNotificationsSidebarComponent is composed of the following components:
- BfmNotificationItemComponent - Component for displaying individual notification items.
Usage
You need to import it in your module and use it in your template.
notifications-sidebar.component.ts
import { BfmNotificationsSidebarComponent } from '@celerofinancas/ui-user-kit';
@Component({
standalone: true,
selector: 'notifications-sidebar',
imports: [BfmNotificationsSidebarComponent],
templateUrl: './notifications-sidebar.component.html',
})
export class NotificationsSidebarComponent {}
Then, in your template, you can use the component like this:
notifications-sidebar.component.html
<bfm-notifications-sidebar />
Inputs
The BfmNotificationsSidebarComponent component has no inputs.
Events
The BfmNotificationsSidebarComponent component has no events.