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