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:
parent
cca564c3ba
commit
e9482c8ed5
|
@ -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 { }
|
Loading…
Reference in New Issue