Skip to content

Commit

Permalink
Fix typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
10xjs committed May 9, 2018
1 parent 8acb722 commit 4456886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const DateInput = ({value, min, max, onChange}) => (
))}
</select>
:
<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)}>
{range(props.minuteMin, props.minuteMax).map((value) => (
<option key={value} value={value}>
{value.toLocaleString('en-US', {minimumIntegerDigits: 2})}
Expand Down

0 comments on commit 4456886

Please sign in to comment.