import React from "react"; import styles from "./index.less"; import { Slider, InputNumber, Row, Col } from "antd"; class IntegerStep extends React.Component { state = { inputValue: 1 }; onChange = value => { this.setState({ inputValue: value }); }; render() { const { inputValue } = this.state; return ( ); } } class DecimalStep extends React.Component { state = { inputValue: 0 }; onChange = value => { if (isNaN(value)) { return; } this.setState({ inputValue: value }); }; render() { const { inputValue } = this.state; return ( ); } } export default () => (
);