PeerTube/client/src/app/+page-not-found/page-not-found-routing.modu...

17 lines
406 B
TypeScript
Raw Normal View History

2018-05-31 04:35:01 -05:00
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { PageNotFoundComponent } from './page-not-found.component'
const pageNotFoundRoutes: Routes = [
{
path: '',
2018-05-31 07:43:48 -05:00
component: PageNotFoundComponent
2018-05-31 04:35:01 -05:00
}
]
@NgModule({
imports: [ RouterModule.forChild(pageNotFoundRoutes) ],
exports: [ RouterModule ]
})
export class PageNotFoundRoutingModule {}