We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8acb722 commit 4456886Copy full SHA for 4456886
1 file changed
README.md
@@ -53,7 +53,7 @@ const DateInput = ({value, min, max, onChange}) => (
53
))}
54
</select>
55
:
56
- <select value={props.minute} onChange={(e) => props.props.setMinute(e.props.target.value)}>
+ <select value={props.minute} onChange={(e) => props.setMinute(e.props.target.value)}>
57
{range(props.minuteMin, props.minuteMax).map((value) => (
58
<option key={value} value={value}>
59
{value.toLocaleString('en-US', {minimumIntegerDigits: 2})}
0 commit comments