New to Kendo UI for Angular? Start a free 30-day trial
KENDO_TEXTAREA
Use the KENDO_TEXTAREA
utility array to add all TextArea-related components and directives to a standalone Angular component.
typescript
import { KENDO_TEXTAREA } from '@progress/kendo-angular-inputs';
@Component({
standalone: true,
imports: [KENDO_TEXTAREA],
template: `<kendo-textarea></kendo-textarea>`
})
export class MyComponent {}