Skip to content

Commit 4456886

Browse files
committed
Fix typo in README.md
1 parent 8acb722 commit 4456886

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const DateInput = ({value, min, max, onChange}) => (
5353
))}
5454
</select>
5555
:
56-
<select value={props.minute} onChange={(e) => props.props.setMinute(e.props.target.value)}>
56+
<select value={props.minute} onChange={(e) => props.setMinute(e.props.target.value)}>
5757
{range(props.minuteMin, props.minuteMax).map((value) => (
5858
<option key={value} value={value}>
5959
{value.toLocaleString('en-US', {minimumIntegerDigits: 2})}

0 commit comments

Comments
 (0)