connect-admin/app/pages/community/community-edit-form/community-edit-form.module.ts

26 lines
683 B
TypeScript
Raw Normal View History

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