import React from 'react' import { debounce } from '../utils' import './PercentageField.css' export default class extends React.Component { onChange = this.props.debounce ? debounce(this.props.debounce, this.props.input.onChange) : this.props.input.onChange render() { let { input: { value } } = this.props return (
this.onChange(e.target.value)} value={value} type="range" name="volume" min="0" step="0.1" max="1" /> {value * 100} %
) } }