UNPKG

@jumamiller/auth-ng

Version:

Auth package for angular

12 lines (10 loc) 317 B
import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { ErrorComponent } from './error.component'; @NgModule({ imports: [RouterModule.forChild([ { path: '', component: ErrorComponent } ])], exports: [RouterModule] }) export class ErrorRoutingModule { }