UNPKG

ng2-tree-hackaday

Version:

angular2 component for visualizing data that can be naturally represented as a tree

13 lines (11 loc) 351 B
import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { BrowserModule } from '@angular/platform-browser'; import { TreeModule } from '../index'; @NgModule({ declarations: [AppComponent], imports: [BrowserModule, TreeModule], bootstrap: [AppComponent] }) export class AppModule { }