Created
February 3, 2020 13:26
-
-
Save indreklasn/8a3227b781e82738be280f6e4381530d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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