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.

20 lines (16 loc) 440 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AngularWrapperKendoUiModule } from 'angular-wrapper-kendo-ui'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, AngularWrapperKendoUiModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }