Skip to content

Commit a1c0b81

Browse files
committed
fix
1 parent dfa009c commit a1c0b81

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

docs/examples/simple.tsx

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,28 @@
11
import '../../assets/index.less';
22
import React, { useState } from 'react';
3-
import type { SwitchChangeEventHandler } from 'rc-switch';
4-
import Switch from 'rc-switch';
3+
import type { SwitchChangeEventHandler } from '@rc-component/switch';
4+
import Switch from '@rc-component/switch';
55

66
const onChange: SwitchChangeEventHandler = (value, event) => {
77
// eslint-disable-next-line no-console
88
console.log(`switch checked: ${value}`, event);
9-
}
9+
};
1010

1111
export default () => {
1212
const [disabled, setDisabled] = useState(false);
1313

1414
const toggle = () => {
1515
setDisabled((prev) => !prev);
16-
}
16+
};
1717

1818
return (
1919
<div style={{ margin: 20 }}>
20-
<Switch
21-
onChange={onChange}
22-
disabled={disabled}
23-
checkedChildren="开"
24-
unCheckedChildren="关"
25-
/>
20+
<Switch onChange={onChange} disabled={disabled} checkedChildren="开" unCheckedChildren="关" />
2621
<div style={{ marginTop: 20 }}>
2722
<button type="button" onClick={toggle}>
2823
toggle disabled
2924
</button>
3025
</div>
3126
</div>
32-
)
33-
}
27+
);
28+
};

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"skipLibCheck": true,
1414
"declaration": true,
1515
"paths": {
16-
"@@/*": [".dumi/tmp/*"],
17-
"@rc-component/switch": ["src/"]
16+
"@rc-component/switch": ["src/"],
17+
"@@/*": [".dumi/tmp/*"]
1818
}
1919
}
2020
}

0 commit comments

Comments
 (0)