(args: number | ScrollConfig)
| 82 | }; |
| 83 | |
| 84 | const scrollIntoView = (args: number | ScrollConfig) => { |
| 85 | listRef.current?.scrollTo(typeof args === 'number' ? { index: args } : args); |
| 86 | }; |
| 87 | |
| 88 | // https://github.com/ant-design/ant-design/issues/34975 |
| 89 | const isSelected = React.useCallback( |
no outgoing calls
no test coverage detected
searching dependent graphs…