New to Kendo UI for Angular? Start a free 30-day trial
BreadCrumbModule
Represents the NgModule
definition for the BreadCrumb component.
typescript
import { BreadCrumbModule } from '@progress/kendo-angular-navigation';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, BreadCrumbModule],
bootstrap: [AppComponent]
})
export class AppModule {}