Changeset 70e04f1 for src/Clients/Angular/finki-chattery/src/app/modules/questioning/questioning.routes.ts
- Timestamp:
- 10/22/21 21:46:23 (3 years ago)
- Branches:
- dev
- Children:
- 8b6791f
- Parents:
- 81c2e6f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Clients/Angular/finki-chattery/src/app/modules/questioning/questioning.routes.ts
r81c2e6f r70e04f1 2 2 import { Routes, RouterModule } from '@angular/router'; 3 3 import { QuestionPreviewGeneralComponent } from './components/question-preview-general/question-preview-general.component'; 4 import { QuestioningGeneralComponent } from './components/questioning-general/questioning-general.component'; 4 5 import { QuestionsPreviewGeneralComponent } from './components/questions-preview-general/questions-preview-general.component'; 5 6 6 7 const routes: Routes = [ 7 8 { 8 path: 'preview', 9 pathMatch: 'full', 10 component: QuestionsPreviewGeneralComponent 11 }, 12 { 13 path: ':questionUid', 14 component: QuestionPreviewGeneralComponent 9 component: QuestioningGeneralComponent, 10 path: '', 11 children: [ 12 { 13 path: 'preview', 14 pathMatch: 'full', 15 component: QuestionsPreviewGeneralComponent 16 }, 17 { 18 path: ':questionUid', 19 component: QuestionPreviewGeneralComponent 20 } 21 ] 15 22 } 16 23 ];
Note:
See TracChangeset
for help on using the changeset viewer.