import Image from 'next/image' import img from '../public/test.jpg' import { WindowScroller, List as VirtualizedList } from 'react-virtualized' export default function Home() { return (
{({ height, isScrolling, onChildScroll, scrollTop }) => ( { return (
) }} overscanRowCount={0} /> )}
) }