Notifications
This section describes the BfmNotificationsComponent component.
Composition
The BfmNotificationsComponent is composed of the following components:
- BfmNotificationsHeaderComponent - Notifications header component.
- BfmMainTypesComponent - Main types component.
Usage
You can import the BfmNotificationsComponent directly in your route configuration.
import { BfmNotificationsComponent } from '@celerofinancas/ui-user-kit';
const routes = [
{
path: 'notifications',
component: BfmNotificationsComponent,
},
];
But if you need more customization, you need to import it in your module and use it in your template.
notifications.component.ts
import { BfmNotificationsComponent } from '@celerofinancas/ui-user-kit';
@Component({
standalone: true,
selector: 'notifications',
imports: [BfmNotificationsComponent],
templateUrl: './notifications.component.html',
})
export class NotificationsComponent {}
Then, in your template, you can use the component like this:
notifications.component.html
<bfm-notifications />
Inputs
The BfmNotificationsComponent component has no inputs.
Events
The BfmNotificationsComponent component has no events.