Created
May 13, 2022 17:33
-
-
Save twerske/2e5d443484f8695d403ce35faafd26c9 to your computer and use it in GitHub Desktop.
Migrating to the new typed forms API surface where possible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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