import Fixture from '../../Fixture'; const React = window.React; class NumberInputDecimal extends React.Component { state = {value: '.98'}; changeValue = () => { this.setState({ value: '0.98', }); }; render() { const {value} = this.state; return (
{this.props.children}
{ this.setState({value: e.target.value}); }} />
); } } export default NumberInputDecimal;