Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. profileForm = new FormGroup({
  2.   firstName: new FormControl(''),
  3.   lastName: new FormControl(''),
  4.   address: new FormGroup({
  5.     street: new FormControl(''),
  6.     city: new FormControl(''),
  7.     state: new FormControl(''),
  8.     zip: new FormControl('')
  9.   })
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement