Skip to content

Instantly share code, notes, and snippets.

@JulianNorton
Created April 1, 2016 18:11
Show Gist options
  • Save JulianNorton/4ea5854c3ecddc4f8972e9772428d465 to your computer and use it in GitHub Desktop.
Save JulianNorton/4ea5854c3ecddc4f8972e9772428d465 to your computer and use it in GitHub Desktop.
let FIXTURES = [
{
title :'Hello'
},
{
title : 'World'
}
]
<div>
{FIXTURES.map((fixture, idx) => {
return (
<li>{fixture.title}</li>
)
})}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment