mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { HomeComponent } from './home.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{ path: 'home', component: HomeComponent }
|
|
])
|
|
]
|
|
})
|
|
export class HomeRoutingModule { }
|