Skip to content

Instantly share code, notes, and snippets.

@mattdeboard
Created January 5, 2018 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattdeboard/4ca4dc3d9267d361f960d0a0872a8a4f to your computer and use it in GitHub Desktop.
Save mattdeboard/4ca4dc3d9267d361f960d0a0872a8a4f to your computer and use it in GitHub Desktop.
<CurrencyInput
editable={editable}
onChange={e =>
handleChange && handleChange(this.props.row.priceCheckParam, e)
}
style={styles.textInput}
value={value}
invalidValueMsg="Must be >= $1,000"
isValueValid={v => v >= 1000}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment