Last active
June 1, 2018 22:49
This file contains 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
let itemData = [ | |
{ name: 'Chair', price: '$199', id: 'abc123' }, | |
{ name: 'Table', price: '$799', id: 'def456' } | |
]; | |
let Item = ({ description, id }) => <li key={id}>{description}</li>; | |
let makeProps = ({ name, price, id }) => ({ | |
id, | |
description: `${name} - ${price}` | |
}); | |
let ItemList = ({ items }) => <ul>{items.map(makeProps).map(Item)}</ul>; | |
// ... <ItemList items={itemData} /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment