1
|
import { NgModule} from '@angular/core';
|
2
|
import { CommonModule } from '@angular/common';
|
3
|
import { RouterModule } from '@angular/router';
|
4
|
import {FormsModule} from '@angular/forms';
|
5
|
|
6
|
import { InviteService } from './invite.service';
|
7
|
import {InviteComponent} from './invite.component';
|
8
|
import {AlertModalModule} from '../../openaireLibrary/utils/modal/alertModal.module';
|
9
|
|
10
|
@NgModule({
|
11
|
imports: [
|
12
|
CommonModule, RouterModule, AlertModalModule, FormsModule
|
13
|
],
|
14
|
declarations: [
|
15
|
InviteComponent
|
16
|
],
|
17
|
providers:[
|
18
|
InviteService
|
19
|
],
|
20
|
exports: [
|
21
|
InviteComponent
|
22
|
]
|
23
|
})
|
24
|
export class InviteModule { }
|