2016-08-14 13:54:33 -05:00
|
|
|
import { Routes } from '@angular/router';
|
2016-07-05 15:06:13 +02:00
|
|
|
|
|
|
|
import { AppComponent as S0101 } from '../01-01/app';
|
|
|
|
|
2016-08-14 13:54:33 -05:00
|
|
|
export const routes: Routes = [
|
2016-07-08 17:49:06 +02:00
|
|
|
{ path: '', redirectTo: '/01-01', pathMatch: 'full' },
|
2016-07-05 15:06:13 +02:00
|
|
|
{ path: '01-01', component: S0101 },
|
|
|
|
];
|