import LazyLoad from './LazyLoad'; const { FixedSizeList } = LazyLoad; const Row = ({ index, style, }: { index: number; style: React.CSSProperties; }) =>
Row {index}
; const LazyLoading = () => { return ( {Row} ); }; export default LazyLoading;