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