| import React, { useState } from 'react'; | |
| import { Button, InputNumber, Space } from 'antd'; | |
| const App: React.FC = () => { | |
| const [value, setValue] = useState<string | number | null>('99'); | |
| return ( | |
| <Space> | |
| <InputNumber min={1} max={10} value={value} onChange={setValue} /> | |
| <Button | |
| type="primary" | |
| onClick={() => { | |
| setValue(99); | |
| }} | |
| > | |
| Reset | |
| </Button> | |
| </Space> | |
| ); | |
| }; | |
| export default App; | |