Skip to content

Instantly share code, notes, and snippets.

@twerske
Created May 13, 2022 17:33
Show Gist options
  • Save twerske/2e5d443484f8695d403ce35faafd26c9 to your computer and use it in GitHub Desktop.
Save twerske/2e5d443484f8695d403ce35faafd26c9 to your computer and use it in GitHub Desktop.
Migrating to the new typed forms API surface where possible
// v14 partial typed form, migrating `UntypedFormGroup` -> `FormGroup`
const cat = new FormGroup({
name: new FormGroup(
first: new UntypedFormControl('Barb'),
last: new UntypedFormControl('Smith'),
),
lives: new UntypedFormControl(9)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment