Skip to main content

Economic Group Profile

This section describes the BfmEconomicGroupProfileComponent component.

Composition

The BfmEconomicGroupProfileComponent is composed of the following components:

Usage

You can import the BfmEconomicGroupProfileComponent directly in your route configuration.

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

const routes = [
{
path: 'economic-group/:economic-group-pk',
component: BfmEconomicGroupProfileComponent,
},
];

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

economic-group.component.ts
import { BfmEconomicGroupProfileComponent } from '@celerofinancas/ui-user-kit';

@Component({
standalone: true,
selector: 'economic-group-profile',
imports: [BfmEconomicGroupProfileComponent],
templateUrl: './economic-group.component.html',
})
export class EconomicGroupProfileComponent {}

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

economic-group.component.html
<bfm-app-economic-group-profile />

Inputs

The BfmEconomicGroupProfileComponent component has no inputs.

Events

The BfmEconomicGroupProfileComponent component has no events.