Skip to main content

Profile

This section describes the BfmProfileComponent component.

Usage

You can import the BfmProfileComponent directly in your route configuration.

import { BfmProfileComponent } from '@celerofinancas/ui-user-kit';

const routes = [
{
path: 'profile',
component: BfmProfileComponent,
},
];

But if you need more customization, you need to import it in your module and use it in your template.

profile.component.ts
import { BfmProfileComponent } from '@celerofinancas/ui-user-kit';

@Component({
standalone: true,
selector: 'profile',
imports: [BfmProfileComponent],
templateUrl: './profile.component.html',
})
export class CustomProfileComponent {}

Then, in your template, you can use the component like this:

profile.component.html
<bfm-profile />

Inputs

The BfmProfileComponent component has no inputs.

Events

The BfmProfileComponent component has no events.