Ahh so that's what was causing outlines

This commit is contained in:
Jake Archibald
2018-10-20 15:33:42 +01:00
parent e97ee3ee4b
commit 3ca71cf35b

View File

@@ -25,7 +25,7 @@ export default class Range extends Component<Props, State> {
} = props;
const {
value, min, max,
value, min, max, step,
} = props;
return (
@@ -46,6 +46,7 @@ export default class Range extends Component<Props, State> {
value={value}
min={min}
max={max}
step={step}
onInput={this.onTextInput}
/>
</label>