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