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