Company Profile
This section describes the BfmCompanyProfileComponent component.
Composition
The BfmCompanyProfileComponent is composed of the following components:
- BfmCompanyComplementaryDataComponent - Company complementary data component.
- BfmCompanyAddressFormComponent - Company address form component.
- BfmCompanyCheckingAccountComponent - Company checking account component.
Usage
You can import the BfmCompanyProfileComponent directly in your route configuration.
import { BfmCompanyProfileComponent } from '@celerofinancas/ui-user-kit';
const routes = [
{
path: 'company/:company-pk',
component: BfmCompanyProfileComponent,
},
];
But if you need more customization, you need to import it in your module and use it in your template.
company-profile.component.ts
import { BfmCompanyProfileComponent } from '@celerofinancas/ui-user-kit';
@Component({
standalone: true,
selector: 'company-profile',
imports: [BfmCompanyProfileComponent],
templateUrl: './company.component.html',
})
export class CompanyProfileComponent {}
Then, in your template, you can use the component like this:
company.component.html
<bfm-app-company-profile />
Inputs
The BfmCompanyProfileComponent has no inputs.
Events
The BfmCompanyProfileComponent component has no events.