New to Kendo UI for Angular? Start a free 30-day trial
ActionSheetModule
Represents the NgModule
definition for the ActionSheet component.
typescript
import { ActionSheetModule } 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, ActionSheetModule],
bootstrap: [AppComponent]
})
export class AppModule {}