Files
dspace-angular/src/app/community-page/community-form/community-form.module.ts
2024-01-09 09:23:20 +01:00

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 {
}