Skip to content

Instantly share code, notes, and snippets.

@dance2die
Last active May 8, 2019 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/831038fd5f895b0685fcce7fd8bf3bd0 to your computer and use it in GitHub Desktop.
Save dance2die/831038fd5f895b0685fcce7fd8bf3bd0 to your computer and use it in GitHub Desktop.
const Example = () => {
+  const outerListRef = useRef(undefined)
+  const innerListRef = useRef(undefined)

  //.. rest hidden for brevity

  return (
    <div onKeyDown={handleKeyDown} tabIndex="0" style={{ width: '151px' }}>
      <List
+        outerRef={outerListRef}
+        innerRef={innerListRef}
        className="List"
        height={listHeight}
        itemCount={1000}
        itemSize={35}
        useIsScrolling
        width={300}
      >
        {Row}
      </List>
    </div>
  )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment