You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
690 B
18 lines
690 B
5 years ago
|
import { NgModule } from '@angular/core';
|
||
|
import { Routes, RouterModule } from '@angular/router';
|
||
|
import { PageOneComponent } from './state/page-one/page-one.component';
|
||
|
import { PageTwoNameComponent } from './state/page-two-name/page-two-name.component';
|
||
|
import { PageTwoTimeComponent } from './state/page-two-time/page-two-time.component';
|
||
|
|
||
|
const routes: Routes = [
|
||
|
{ path: 'statePageOne', component: PageOneComponent},
|
||
|
{ path: 'statePageTwo_name', component: PageTwoNameComponent},
|
||
|
{ path: 'statePageTwo_time', component: PageTwoTimeComponent}
|
||
|
];
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [RouterModule.forChild(routes)],
|
||
|
exports: [RouterModule]
|
||
|
})
|
||
|
export class StatisticAnalysisRoutingModule { }
|