mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 06:53:03 +00:00
20 lines
439 B
TypeScript
20 lines
439 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { CommunityFormComponent } from './community-form.component';
|
|
import { ComcolModule } from '../../shared/comcol/comcol.module';
|
|
import { FormModule } from '../../shared/form/form.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ComcolModule,
|
|
FormModule,
|
|
CommunityFormComponent
|
|
],
|
|
exports: [
|
|
CommunityFormComponent
|
|
]
|
|
})
|
|
export class CommunityFormModule {
|
|
|
|
}
|