mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 20:43:08 +00:00
14 lines
308 B
TypeScript
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 { }
|