feat(tables): add a tables module

This commit is contained in:
Alexander Zhukov 2017-05-23 17:45:35 +03:00
parent a361ce55ac
commit 21cd21fbef
13 changed files with 659 additions and 5 deletions

View file

@ -3,7 +3,6 @@ import { NgModule } from '@angular/core';
import { PagesComponent } from './pages.component';
import { DashboardComponent } from './dashboard/dashboard.component';
import { ChartsComponent } from './charts/charts.component';
const routes: Routes = [{
path: '',
@ -29,6 +28,9 @@ const routes: Routes = [{
}, {
path: 'forms',
loadChildren: './forms/forms.module#FormsModule',
}, {
path: 'tables',
loadChildren: './tables/tables.module#TablesModule',
}, {
path: '',
redirectTo: 'dashboard',