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