2016-08-14 13:54:33 -05:00
|
|
|
import { ModuleWithProviders } from '@angular/core';
|
2016-07-12 18:14:13 -07:00
|
|
|
import { Routes,
|
|
|
|
RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
export const routes: Routes = [
|
|
|
|
{ path: '', redirectTo: 'contact', pathMatch: 'full'},
|
|
|
|
{ path: 'crisis', loadChildren: 'app/crisis/crisis.module' },
|
|
|
|
{ path: 'heroes', loadChildren: 'app/hero/hero.module.3' }
|
|
|
|
];
|
|
|
|
|
2016-08-14 13:54:33 -05:00
|
|
|
export const routing: ModuleWithProviders = RouterModule.forRoot(routes);
|