tables component structure

This commit is contained in:
nixa 2016-05-13 18:18:11 +03:00
parent 9a90d9507c
commit 1d6c0554a3
8 changed files with 98 additions and 0 deletions

View file

@ -8,6 +8,7 @@ import {Ui} from './ui';
import {Maps} from './maps';
import {Charts} from './charts';
import {Forms} from './forms';
import {Tables} from './tables';
@Component({
selector: 'pages',
@ -65,6 +66,11 @@ import {Forms} from './forms';
component: Forms,
path: '/forms/...',
},
{
name: 'Tables',
component: Tables,
path: '/tables/...',
}
])
export class Pages {