]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+home/home-routing.module.ts
Create a dedicated component for video description
[github/Chocobozzz/PeerTube.git] / client / src / app / +home / home-routing.module.ts
1 import { NgModule } from '@angular/core'
2 import { RouterModule, Routes } from '@angular/router'
3 import { HomeComponent } from './home.component'
4
5 const homeRoutes: Routes = [
6 {
7 path: '',
8 component: HomeComponent
9 }
10 ]
11
12 @NgModule({
13 imports: [ RouterModule.forChild(homeRoutes) ],
14 exports: [ RouterModule ]
15 })
16 export class HomeRoutingModule {}