File tree 2 files changed +9
-14
lines changed
2 files changed +9
-14
lines changed Original file line number Diff line number Diff line change 1
1
import '../../assets/index.less' ;
2
2
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' ;
5
5
6
6
const onChange : SwitchChangeEventHandler = ( value , event ) => {
7
7
// eslint-disable-next-line no-console
8
8
console . log ( `switch checked: ${ value } ` , event ) ;
9
- }
9
+ } ;
10
10
11
11
export default ( ) => {
12
12
const [ disabled , setDisabled ] = useState ( false ) ;
13
13
14
14
const toggle = ( ) => {
15
15
setDisabled ( ( prev ) => ! prev ) ;
16
- }
16
+ } ;
17
17
18
18
return (
19
19
< 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 = "关" />
26
21
< div style = { { marginTop : 20 } } >
27
22
< button type = "button" onClick = { toggle } >
28
23
toggle disabled
29
24
</ button >
30
25
</ div >
31
26
</ div >
32
- )
33
- }
27
+ ) ;
28
+ } ;
Original file line number Diff line number Diff line change 13
13
"skipLibCheck" : true ,
14
14
"declaration" : true ,
15
15
"paths" : {
16
- "@@/* " : [" .dumi/tmp/* " ],
17
- "@rc-component/switch " : [" src/ " ]
16
+ "@rc-component/switch " : [" src/ " ],
17
+ "@@/* " : [" .dumi/tmp/* " ]
18
18
}
19
19
}
20
20
}
You can’t perform that action at this time.
0 commit comments