Skip to content

Instantly share code, notes, and snippets.

@cmilfont
Last active March 8, 2017 11:06
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 cmilfont/60e77f8c7836aed63f98e4dbdd30fcc0 to your computer and use it in GitHub Desktop.
Save cmilfont/60e77f8c7836aed63f98e4dbdd30fcc0 to your computer and use it in GitHub Desktop.
const Customers = ({ customers }) => (
<div className="customers-grid">
<Toolbar />
<Grid rows={
customers.map(customer => (
<div className="ustomers-grid__row">
<div className="ustomers-grid__row-name">{customer.name}</div>
<div className="ustomers-grid__row-email">{customer.email}</div>
</div>
)
}
/>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment