fetis / 30-seconds-of-angular

Curated collection of Angular snippets that you can understand in 30 seconds or less
https://30.codelab.fun
Creative Commons Zero v1.0 Universal
34 stars 2 forks source link

form array snippet #161

Open fetis opened 5 years ago

fetis commented 5 years ago

beginners level, but I always forget details about how to make it

fb.array([
  fb.group({ firstName: 'foo', lastName: null }),
  fb.group({ firstName: 'x', lastName: 'y'  }),
])
NothingEverHappens commented 5 years ago

@thekiba find a doc links which has this