]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+home/home-routing.module.ts
Improve remote runner config UX
[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 data: {
10 meta: {
11 title: $localize`Homepage`
12 }
13 }
14 }
15 ]
16
17 @NgModule({
18 imports: [ RouterModule.forChild(homeRoutes) ],
19 exports: [ RouterModule ]
20 })
21 export class HomeRoutingModule {}