New to Kendo UI for Angular? Start a free 30-day trial
CheckBoxModule
Defines the NgModule
for the CheckBox directive and CheckBoxComponent.
Use this module to add CheckBox features to your NgModule-based Angular application.
typescript
import { CheckBoxModule } 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, CheckBoxModule],
bootstrap: [AppComponent]
})
export class AppModule {}