New to Kendo UI for Angular? Start a free 30-day trial
FormFieldModule
Represents the NgModule definition for the FormField, Error and Hint components.
ts
// Import the FormField module
import { FormFieldModule } from '@progress/kendo-angular-inputs';
// The browser platform with a compiler
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgModule } from '@angular/core';
// Import the app component
import { AppComponent } from './app.component';
// Define the app module
@NgModule({
declarations: [AppComponent], // declare app component
imports: [BrowserModule, FormFieldModule], // import FormField module
bootstrap: [AppComponent]
})
export class AppModule {}
// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);