Skip to content

Instantly share code, notes, and snippets.

@isnifer
Created October 21, 2015 14:15
Show Gist options
  • Save isnifer/fce9ce4115e80000a2f6 to your computer and use it in GitHub Desktop.
Save isnifer/fce9ce4115e80000a2f6 to your computer and use it in GitHub Desktop.
validators={[
{
validator(value, params) {
if (value) {
return Promise.resolve();
}
return Promise.reject(params.message);
},
params: {
message: 'Field is required'
}
}
]}>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment