New to Kendo UI for Angular? Start a free 30-day trial
TextAreaModule
Defines the NgModule
for the TextArea component.
Use this module to add the TextArea component to your NgModule-based Angular application.
typescript
import { TextAreaModule } from '@progress/kendo-angular-inputs';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, TextAreaModule],
bootstrap: [AppComponent]
})
export class AppModule {}