(len: number)
| 3 | import '../../assets/index.less'; |
| 4 | |
| 5 | function genData(len: number) { |
| 6 | return new Array(len).fill(0).map((_, index) => ({ |
| 7 | label: `label ${index}`, |
| 8 | value: index, |
| 9 | })); |
| 10 | } |
| 11 | |
| 12 | const Loading = ({ onLoad }) => { |
| 13 | React.useEffect(() => { |
no outgoing calls
no test coverage detected
searching dependent graphs…