---
order: 1
title:
zh-CN: 带输入框的滑块
en-US: Slider with InputNumber
---
## zh-CN
和 [数字输入框](/components/input-number/) 组件保持同步。
## en-US
Synchronize with [InputNumber](/components/input-number/) component.
```tsx
import React, { useState } from 'react';
import { Slider, InputNumber, Row, Col } from 'antd';
const IntegerStep = () => {
const [inputValue, setInputValue] = useState(1);
const onChange = (newValue: number) => {
setInputValue(newValue);
};
return (