Skip to content

Instantly share code, notes, and snippets.

@carlrip
Created August 25, 2019 05:15
Show Gist options
  • Save carlrip/343c108a1ec3c3a93ccf232e5a8e2846 to your computer and use it in GitHub Desktop.
Save carlrip/343c108a1ec3c3a93ccf232e5a8e2846 to your computer and use it in GitHub Desktop.
Consuming List
<List
data={["Fred", "Bob", "Jane"]}
renderHeader={() => <h3>Names</h3>}
renderItem={item => (
<div>
<span style={{ marginRight: "10px" }}>{item}</span>
<button>Click me</button>
</div>
)}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment