feat(app\components): create tree view component

This commit is contained in:
tibing 2016-07-04 17:07:51 +03:00
parent e7d21b2239
commit 070cec726e
11 changed files with 117 additions and 0 deletions

View file

@ -0,0 +1,25 @@
import {Component} from '@angular/core';
import {RouteConfig} from '@angular/router-deprecated';
import {TreeView} from "./components/treeView";
@Component({
selector: 'components',
pipes: [],
providers: [],
styles: [],
template: `<router-outlet></router-outlet>`
})
@RouteConfig([
{
name: 'TreeView',
component: TreeView,
path: '/tree-view',
useAsDefault: true
}
])
export class Components {
constructor() {
}
}