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 (