New to Kendo UI for Angular? Start a free 30-day trial
ChipModule
Represents the NgModule definition for the Chip and ChipList components.
Required for adding Chip and ChipList features in NgModule-based Angular applications.
typescript
import { ChipModule } from '@progress/kendo-angular-buttons';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, ChipModule],
bootstrap: [AppComponent]
})
export class AppModule {}