Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created October 2, 2018 11:43
Show Gist options
  • Save tsh-code/47773514946eddaacb481fed55f9dab1 to your computer and use it in GitHub Desktop.
Save tsh-code/47773514946eddaacb481fed55f9dab1 to your computer and use it in GitHub Desktop.
const EmployeesTable = ({ employees }) => (
<table>
<tr><th>Name</th><th>Position</th></tr>
{employees.map(
({ name, position }) => <tr><td>{name}</td><td>{position}</td></tr>
)}
</table>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment