mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 22:43:03 +00:00
22 lines
567 B
TypeScript
22 lines
567 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { CollectionPageComponent } from './collection-page.component';
|
|
import { CollectionPageRoutingModule } from './collection-page-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CollectionPageRoutingModule,
|
|
CommonModule,
|
|
SharedModule,
|
|
TranslateModule,
|
|
],
|
|
declarations: [
|
|
CollectionPageComponent,
|
|
]
|
|
})
|
|
export class CollectionPageModule { }
|