diff options
Diffstat (limited to 'client/src/app/login')
-rw-r--r-- | client/src/app/login/index.ts | 1 | ||||
-rw-r--r-- | client/src/app/login/login.routes.ts | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/login/index.ts b/client/src/app/login/index.ts index 69c16441f..64d3f2a3c 100644 --- a/client/src/app/login/index.ts +++ b/client/src/app/login/index.ts | |||
@@ -1 +1,2 @@ | |||
1 | export * from './login.component'; | 1 | export * from './login.component'; |
2 | export * from './login.routes'; | ||
diff --git a/client/src/app/login/login.routes.ts b/client/src/app/login/login.routes.ts new file mode 100644 index 000000000..4f56d5eb2 --- /dev/null +++ b/client/src/app/login/login.routes.ts | |||
@@ -0,0 +1,5 @@ | |||
1 | import { LoginComponent } from './login.component'; | ||
2 | |||
3 | export const LoginRoutes = [ | ||
4 | { path: 'login', component: LoginComponent } | ||
5 | ]; | ||