Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created February 3, 2020 13:26
Show Gist options
  • Save indreklasn/8a3227b781e82738be280f6e4381530d to your computer and use it in GitHub Desktop.
Save indreklasn/8a3227b781e82738be280f6e4381530d to your computer and use it in GitHub Desktop.
import { FixedSizeList as List } from 'react-window';
const Row = ({ index, style }) => (
<div style={style}>Row {index}</div>
);
const Example = () => (
<List
height={150}
itemCount={1000}
itemSize={35}
width={300}
>
{Row}
</List>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment