Massive
This section describes the BfmMassiveComponent component.
Composition
The BfmMassiveComponent is composed of the following components:
- BfmChargeUploadComponent - Charge upload component.
- BfmMassiveListComponent - Description of BfmMassiveListComponent.
Usage
You can import the BfmMassiveComponent directly in your route configuration.
import { BfmMassiveComponent } from '@celerofinancas/ui-charges';
const routes = [
{
path: 'massive',
component: BfmMassiveComponent,
},
];
But if you need more customization, you need to import it in your module and use it in your template.
massive.component.ts
import { BfmMassiveComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'massive',
imports: [BfmMassiveComponent],
templateUrl: './massive.component.html',
})
export class MassiveComponent {}
Then, in your template, you can use the component like this:
massive.component.html
<bfm-massive />
Inputs
The BfmMassiveComponent component has no inputs.
Events
The BfmMassiveComponent component has no events.