Skip to main content

Not Found

This section describes the BfmNotFoundComponent component.

Usage

You can import the BfmNotFoundComponent directly in your route configuration.

import { BfmNotFoundComponent } from '@celerofinancas/ui-charges';

const routes = [
{
path: 'not-found',
component: BfmNotFoundComponent,
},
];

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

not-found.module.ts

import { BfmNotFoundComponent } from '@celerofinancas/ui-charges';


@Component({
standalone: true,
selector: 'not-found',
imports: [BfmNotFoundComponent],
templateUrl: './not-found.component.html',
styleUrls: ['./not-found.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NotFoundComponent {}

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

not-found.component.html

<bfm-not-found></bfm-not-found>

Inputs

The BfmNotFoundComponent has no inputs.

Events

The BfmNotFoundComponent has no Events.