Project

General

Profile

« Previous | Next » 

Revision 51079

Add community-edit-from.module

View differences:

modules/uoa-admin-portal/trunk/app/pages/community/community-edit-form/community-edit-form.module.ts
1
import {NgModule}                   from '@angular/core';
2
import {CommonModule}               from '@angular/common';
3
import {FormsModule}                from '@angular/forms';
4
import {RouterModule}               from '@angular/router';
5

  
6
import {CommunityEditFormComponent} from './community-edit-form.component';
7

  
8
import {CommunityService}           from '../../../openaireLibrary/connect/community/community.service';
9

  
10
@NgModule({
11
  imports:[
12
    CommonModule, FormsModule, RouterModule
13
  ],
14
  declarations:[
15
    CommunityEditFormComponent
16
   ],
17
  providers:[
18
    CommunityService
19
   ],
20
  exports: [
21
    CommunityEditFormComponent
22
   ]
23
})
24

  
25
export class CommunityEditFormModule { }

Also available in: Unified diff