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.
21 lines
494 B
21 lines
494 B
2 years ago
|
import React, { useState } from 'react';
|
||
|
import { Slider, Switch } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [disabled, setDisabled] = useState(false);
|
||
|
|
||
|
const onChange = (checked: boolean) => {
|
||
|
setDisabled(checked);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Slider defaultValue={30} disabled={disabled} />
|
||
|
<Slider range defaultValue={[20, 50]} disabled={disabled} />
|
||
|
Disabled: <Switch size="small" checked={disabled} onChange={onChange} />
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|