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 (