Skip to content

Instantly share code, notes, and snippets.

@fireflysemantics
Created June 10, 2022 03:14
Show Gist options
  • Save fireflysemantics/9d2cc1fa633ead54e6a6965962828684 to your computer and use it in GitHub Desktop.
Save fireflysemantics/9d2cc1fa633ead54e6a6965962828684 to your computer and use it in GitHub Desktop.
public form = new FormGroup<IContactForm>({
name: new FormControl<string>('', { nonNullable: true }),
email: new FormControl<string>('', { nonNullable: true }),
phone: new FormControl<string | null>(`111-111-1111`, {
nonNullable: false,
}),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment