(key: TabKey<T>)
| 113 | }; |
| 114 | |
| 115 | const handleChangeKey = (key: TabKey<T>) => { |
| 116 | !isControlled(props) && setInternalTabKey(key); |
| 117 | isTabMode(props) && props.onChange?.(key); |
| 118 | }; |
| 119 | |
| 120 | return ( |
| 121 | <RcDrawer |
nothing calls this directly
no test coverage detected