bvaughn / react-window

React components for efficiently rendering large lists and tabular data
https://react-window.now.sh/
MIT License
15.54k stars 779 forks source link

Missing api reference / documentation not clear. Whis is itemSize property? #691

Closed danierlr closed 1 year ago

danierlr commented 1 year ago

Examples page contains such code:

onst Example = () => (
  <List
    height={150}
    itemCount={1000}
    itemSize={35}
    width={300}
  >
    {Row}
  </List>
);

What is itemSize? How does it relate to height and width?