ant-design/components/slider/demo/editable.tsx

11 lines
250 B
TypeScript
Raw Normal View History

import React from 'react';
import { Slider } from 'antd';
const App: React.FC = () => {
const [value, setValue] = React.useState([20, 80]);
return <Slider range={{ editable: true }} value={value} onChange={setValue} />;
};
export default App;