Guest User

Untitled

a guest
Jul 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. import { NgModule } from ‘@angular/core’;
  2. import { BrowserModule } from ‘@angular/platform-browser’;
  3. import { FormsModule, ReactiveFormsModule } from ‘@angular/forms’;
  4. import {RxReactiveFormsModule } from ‘@rxweb/reactive-form-validators’
  5. import { AppComponent } from './app.component';
  6. import { UserComponent } from './user/user.component'
  7. @NgModule({
  8. imports: [ BrowserModule,
  9. FormsModule,ReactiveFormsModule, //# Point 3 module import
  10. RxReactiveFormsModule //# point 4 module import
  11. ],
  12. declarations: [ AppComponent, UserComponent ],
  13. bootstrap: [ AppComponent ]
  14. })
  15. export class AppModule { }
Add Comment
Please, Sign In to add comment