Last active
June 1, 2018 22:49
-
-
Save sbussard/81c509b149ef7023f65651d95755842d to your computer and use it in GitHub Desktop.
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