New to Kendo UI for Angular? Start a free 30-day trial
KENDO_NAVIGATION
Use this utility array to access all @progress/kendo-angular-navigation
-related components and directives in a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_NAVIGATION } from '@progress/kendo-angular-navigation';
@Component({
selector: 'my-app',
standalone: true,
imports: [KENDO_NAVIGATION],
template: `
<kendo-appbar>
<!-- AppBar content -->
</kendo-appbar>
<kendo-breadcrumb [items]="breadcrumbItems">
</kendo-breadcrumb>
`
})
export class AppComponent {}