Project

General

Profile

« Previous | Next » 

Revision 56635

View differences:

adminPg.module.ts
1 1
import { NgModule } from '@angular/core';
2 2
import { CommonModule } from '@angular/common';
3 3
import { TabsModule } from 'ngx-bootstrap';
4
import { FormsModule } from '@angular/forms';
4
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
5 5
import { AdminPgRouting } from './adminPg.routing';
6 6
import { ReusableComponentsModule } from '../../shared/reusablecomponents/reusable-components.module';
7 7
import { AdminPgComponent } from './adminPg.component';
8 8
import { AdminPgMetricsComponent } from './adminPg-metrics.component';
9
import {RegistrationComponent} from './registration.component';
9 10

  
10 11
@NgModule ({
11 12
  imports: [
12 13
    CommonModule,
13 14
    TabsModule.forRoot(),
14 15
    FormsModule,
16
    ReactiveFormsModule,
15 17
    AdminPgRouting,
16
    ReusableComponentsModule
18
    ReusableComponentsModule,
17 19
  ],
18 20
  declarations: [
19 21
    AdminPgComponent,
20
    AdminPgMetricsComponent
22
    AdminPgMetricsComponent,
23
    RegistrationComponent
21 24
  ]
22 25
})
23 26

  

Also available in: Unified diff