aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+home/home-routing.module.ts
blob: bedf26be0f0b6412ab95e768a065a07a1eff2a78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { HomeComponent } from './home.component'

const homeRoutes: Routes = [
  {
    path: '',
    component: HomeComponent,
    data: {
      meta: {
        title: $localize`Homepage`
      }
    }
  }
]

@NgModule({
  imports: [ RouterModule.forChild(homeRoutes) ],
  exports: [ RouterModule ]
})
export class HomeRoutingModule {}