Skip to content

Instantly share code, notes, and snippets.

@srph
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save srph/334f3388e1f3d0ff947d to your computer and use it in GitHub Desktop.

Select an option

Save srph/334f3388e1f3d0ff947d to your computer and use it in GitHub Desktop.
Sample JSON data taken from Thinking In React (http://facebook.github.io/react/docs/thinking-in-react.html)
[
{
"category": "Sporting Goods",
"price": "$49.99 ",
"stocked": true,
"name": "Football"
},
{
"category": "Sporting Goods",
"price": "$9.99",
"stocked": true,
"name": "Baseball"
},
{
"category": "Sporting Goods",
"price": "$29.99 ",
"stocked": false,
"name": "Basketball"
},
{
"category": "Electronics",
"price": "$99.99",
"stocked": true,
"name": "iPod Touch"
},
{
"category": "Electronics",
"price": "$399.99 ",
"stocked": false,
"name": "iPhone 5"
},
{
"category": "Electronics",
"price": "$199.99 ",
"stocked": true,
"name": "Nexus 7"
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment