mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 19:13:08 +00:00
24 lines
584 B
TypeScript
24 lines
584 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { CollectionPageComponent } from './collection-page.component';
|
|
import { CollectionPageRoutingModule } from './collection-page-routing.module';
|
|
import { SearchPageModule } from '../+search-page/search-page.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
SearchPageModule,
|
|
CollectionPageRoutingModule
|
|
],
|
|
declarations: [
|
|
CollectionPageComponent,
|
|
]
|
|
})
|
|
export class CollectionPageModule {
|
|
|
|
}
|