max
The max
validator checks that a numeric value is at most the maximum value provided.
If the value being validated is null
, false
, an empty string, or another falsy value other than 0
, then the result will be valid. This respects the rule of thumb described in the notes for the required validator.
Named Props
max
: The maximum value compared against
Parameters
The max
validator supports three parameter signatures:
max(value)
where the value is used as themax
named propmax(propsObject)
where the props object contains amax
named propmax(propsFunction)
where the props function returns a props object with amax
named prop
Usage
Last updated
Was this helpful?