Skip to content

Instantly share code, notes, and snippets.

@jaySmilet
Created October 9, 2025 19:07
Show Gist options
  • Select an option

  • Save jaySmilet/992cf79b3f98048bc804b0cf74308e2e to your computer and use it in GitHub Desktop.

Select an option

Save jaySmilet/992cf79b3f98048bc804b0cf74308e2e to your computer and use it in GitHub Desktop.
Form Validation uncontrolled components
function handleSubmit() {
if (inputRef.current.value.includes("@")) {
// Valid email
} else {
// Invalid
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment