Add community-edit-from.module

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-admin-portal/trunk@51079 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
sofia.baltzi 2018-03-07 13:18:30 +00:00
parent cca564c3ba
commit e9482c8ed5
1 changed files with 25 additions and 0 deletions

View File

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