Skip to content

Instantly share code, notes, and snippets.

@verdi327
Last active May 2, 2019 20:16
Show Gist options
  • Save verdi327/ba8bb9d71c56f3d2800288fc0f7b3a36 to your computer and use it in GitHub Desktop.
Save verdi327/ba8bb9d71c56f3d2800288fc0f7b3a36 to your computer and use it in GitHub Desktop.
Functional component for rendering form errors
function ValidationMessage(props) {
if (!props.valid) {
return <div className='error-msg'>{props.message}</div>
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment