diff options
Diffstat (limited to 'client/src/app/app-routing.module.ts')
-rw-r--r-- | client/src/app/app-routing.module.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts new file mode 100644 index 000000000..900a4c5b6 --- /dev/null +++ b/client/src/app/app-routing.module.ts | |||
@@ -0,0 +1,17 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | import { Routes, RouterModule } from '@angular/router'; | ||
3 | |||
4 | const routes: Routes = [ | ||
5 | { | ||
6 | path: '', | ||
7 | redirectTo: '/videos/list', | ||
8 | pathMatch: 'full' | ||
9 | } | ||
10 | ]; | ||
11 | |||
12 | @NgModule({ | ||
13 | imports: [ RouterModule.forRoot(routes) ], | ||
14 | exports: [ RouterModule ] | ||
15 | }) | ||
16 | export class AppRoutingModule {} | ||
17 | |||