Skip to content

Instantly share code, notes, and snippets.

@sbussard
Last active June 1, 2018 22:46
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 sbussard/1fb0d700ae9455804951274f935989c6 to your computer and use it in GitHub Desktop.
Save sbussard/1fb0d700ae9455804951274f935989c6 to your computer and use it in GitHub Desktop.
let itemData = [
{ name: 'Chair', price: '$199', id: 'abc123' },
{ name: 'Table', price: '$799', id: 'def456' }
];
let ItemList = ({ items }) => (
<ul>
{items.map(({ name, price, id }) => (
<li key={id}>{`${name} - ${price}`}</li>
))}
</ul>
);
// ... <ItemList items={itemData} />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment