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