You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
501 B
24 lines
501 B
2 years ago
|
import React, { useState } from 'react';
|
||
|
import { Button, InputNumber } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [disabled, setDisabled] = useState(true);
|
||
|
|
||
|
const toggle = () => {
|
||
|
setDisabled(!disabled);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<InputNumber min={1} max={10} disabled={disabled} defaultValue={3} />
|
||
|
<div style={{ marginTop: 20 }}>
|
||
|
<Button onClick={toggle} type="primary">
|
||
|
Toggle disabled
|
||
|
</Button>
|
||
|
</div>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|