Last active
December 18, 2023 20:15
-
-
Save andrewarosario/38ba3967ac73c4e25358339652e6dbd6 to your computer and use it in GitHub Desktop.
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
export class FormComponent { | |
form: FormGroup; | |
constructor(private formBuilder: FormBuilder) { | |
this.form = this.formBuilder.group({ | |
username: ['', trimmedRequiredValidator], | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment