New to Kendo UI for Angular? Start a free 30-day trial
DialogModule
Represents the NgModule
definition for the Dialog component that includes all Dialog components and directives.
Imports DialogModule
into the root module
of your application or into any other sub-module that will use the Dialog component.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { DialogModule } from '@progress/kendo-angular-dialog';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, DialogModule]
})
export class AppModule {
}