UNPKG

angular-wrapper-kendo-ui-app

Version:

A sample application to use and test the TreeList component defined in the *angular-wrapper-kendo-ui* library.

14 lines (11 loc) 308 B
import { NgModule } from '@angular/core'; import { TreeListComponent } from './tree-list.component'; import '@progress/kendo-ui'; import 'jquery'; @NgModule({ imports: [ ], declarations: [TreeListComponent], exports: [TreeListComponent] }) export class AngularWrapperKendoUiModule { }