Create
This section describes the BfmCompanyRelatedCreateComponent component.
Composition
The BfmCompanyRelatedCreateComponent is composed of the following components:
- CreateCompanyRelatedCreateComponent - Create company related base component
Usage
You can import the BfmCompanyRelatedCreateComponent directly in your route configuration.
import { BfmCompanyRelatedCreateComponent } from '@celerofinancas/ui-company-kit';
const routes = [
{
path: 'create-company-related',
component: BfmCompanyRelatedCreateComponent,
},
];
But if you need more customization, you need to import it in your module and use it in your template.
import { BfmCompanyRelatedCreateComponent } from '@celerofinancas/ui-company-kit';
@Component({
selector: 'company-related-create',
imports: [BfmCompanyRelatedCreateComponent],
templateUrl: './company-related-create.component.html',
standalone: true,
})
export class CompanyRelatedCreateComponent {}
Inputs
The BfmCompanyRelatedCreateComponent component has no inputs.
Events
The BfmCompanyRelatedCreateComponent component has no events.