Files
dspace-angular/src/app/+home/home-routing.module.ts
2017-09-26 11:44:07 -05:00

14 lines
308 B
TypeScript

import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { HomeComponent } from './home.component';
@NgModule({
imports: [
RouterModule.forChild([
{ path: '', component: HomeComponent, pathMatch: 'full' }
])
]
})
export class HomeRoutingModule { }