Skip to content

Instantly share code, notes, and snippets.

@fakenickels
Last active March 24, 2018 20:59
Show Gist options
  • Select an option

  • Save fakenickels/35162c08fd37ec943c4545190bd967b8 to your computer and use it in GitHub Desktop.

Select an option

Save fakenickels/35162c08fd37ec943c4545190bd967b8 to your computer and use it in GitHub Desktop.
<SignUpForm
schema=[
(`password, Required),
(`email, Required),
(
`confirmPassword,
Custom(
values =>
values.confirmPassword !== values.password ?
Some("Passwords don't match") : None,
),
),
]>
...(_reform => ReasonReact.nullElement)
</SignUpForm>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment