Skip to content

Commit 280664b

Browse files
committed
adding default route
1 parent a6e2c3f commit 280664b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

libs/frontend/pages/home/src/components/home/page-home.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ChangeDetectionStrategy, Component } from '@angular/core';
21
import { CommonModule } from '@angular/common';
2+
import { ChangeDetectionStrategy, Component } from '@angular/core';
33

44
@Component({
55
selector: 'lib-page-home',
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import { Route } from '@angular/router';
2+
import { pageHomeRoutes } from '@app/frontend-pages-home';
23

34
export const appRoutes: Route[] = [
4-
5+
{
6+
path: '',
7+
children: pageHomeRoutes,
8+
},
59
];

0 commit comments

Comments
 (0)