Skip to content

Instantly share code, notes, and snippets.

@mjackson
Created April 9, 2015 22:40
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 mjackson/3c097e08ff9276ce80c1 to your computer and use it in GitHub Desktop.
Save mjackson/3c097e08ff9276ce80c1 to your computer and use it in GitHub Desktop.
stuff
var React = require('react');
var escapeRegExp = require('./utils/escapeRegExp');
var CATALOG = [
{
category: 'Sporting Goods',
products: [
{ name: 'Basketball', price: 4000 },
{ name: 'Boxing Gloves', price: 3500, inStock: true },
{ name: 'Baseball', price: 1000 }
]
},
{
category: 'Pets',
products: [
{ name: 'Gerbil', price: 500 },
{ name: 'Goldfish', price: 300, inStock: true },
{ name: 'Parakeet', price: 2000, inStock: true }
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment