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