New to Kendo UI for Angular? Start a free 30-day trial
TreeListModule
Represents the NgModule definition for the TreeList component.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from "@angular/platform-browser";
import { TreeListModule } from '@progress/kendo-angular-treelist';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, TreeListModule],
bootstrap: [AppComponent]
})
export class AppModule {}