source: src/Clients/Angular/finki-chattery/src/app/app-routing.module.ts@ 81e1ed6

dev
Last change on this file since 81e1ed6 was 31a8672, checked in by Стојков Марко <mst@…>, 3 years ago

Frontend component for asking question

  • Property mode set to 100644
File size: 439 bytes
Line 
1import { NgModule } from '@angular/core';
2import { Routes, RouterModule } from '@angular/router';
3
4const routes: Routes = [
5 {
6 path: '**',
7 redirectTo: 'public/home'
8 },
9 {
10 path: 'questions',
11 loadChildren: () => import('./modules/questioning/questioning.module').then((x) => x.QuestioningModule)
12 }
13];
14
15@NgModule({
16 imports: [RouterModule.forRoot(routes)],
17 exports: [RouterModule]
18})
19export class AppRoutingModule {}
Note: See TracBrowser for help on using the repository browser.