import React, { useState } from 'react';
import { Col, InputNumber, Row, Slider } from 'antd';
const IntegerStep = () => {
const [inputValue, setInputValue] = useState(1);
const onChange = (newValue: number) => {
setInputValue(newValue);
};
return (