New to Kendo UI for Angular? Start a free 30-day trial
BottomNavigationModule
Represents the NgModule definition for the BottomNavigation component.
ts
// Import the BottomNavigation module
import { BottomNavigationModule } from '@progress/kendo-angular-navigation';
// The browser platform with a compiler
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
// Import the app component
import { AppComponent } from './app.component';
// Define the app module
@NgModule({
declarations: [AppComponent], // declare app component
imports: [BrowserModule, BottomNavigationModule], // import BottomNavigation module
bootstrap: [AppComponent]
})
export class AppModule {}
// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);