Created
August 25, 2019 05:15
-
-
Save carlrip/343c108a1ec3c3a93ccf232e5a8e2846 to your computer and use it in GitHub Desktop.
Consuming List
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
| <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