Made a new section as per TomS's request :-)

This commit is contained in:
Felix 2019-07-09 14:22:19 +01:00
parent 0e49e947a1
commit a7a150e07c
6 changed files with 86 additions and 1 deletions

View file

@ -17,7 +17,9 @@ import { PayrollLogComponent } from './payroll-log.component';
import { LeaderboardComponent } from './leaderboard.component';
import { MapComponent } from './map.component';
import { TrailMapComponent } from './trail-map.component';
import { MoreStuffComponent } from './more-graphs-and-tables.component';
import { SuppliersComponent } from './suppliers.component';
// Using child path to allow for FullLayout theming
const routes: Routes = [
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' },
@ -89,6 +91,11 @@ const routes: Routes = [
path: 'suppliers',
component: SuppliersComponent,
data: { title: 'Suppliers' }
},
{
path: 'more-graphs-and-tables',
component: MoreStuffComponent,
data: { title: 'More Stuff'}
}
],
}