diff --git a/app/pages/community/community-edit-form/community-edit-form.module.ts b/app/pages/community/community-edit-form/community-edit-form.module.ts new file mode 100644 index 0000000..8b6c0ad --- /dev/null +++ b/app/pages/community/community-edit-form/community-edit-form.module.ts @@ -0,0 +1,25 @@ +import {NgModule} from '@angular/core'; +import {CommonModule} from '@angular/common'; +import {FormsModule} from '@angular/forms'; +import {RouterModule} from '@angular/router'; + +import {CommunityEditFormComponent} from './community-edit-form.component'; + +import {CommunityService} from '../../../openaireLibrary/connect/community/community.service'; + +@NgModule({ + imports:[ + CommonModule, FormsModule, RouterModule + ], + declarations:[ + CommunityEditFormComponent + ], + providers:[ + CommunityService + ], + exports: [ + CommunityEditFormComponent + ] +}) + +export class CommunityEditFormModule { }