Created
April 9, 2015 22:40
-
-
Save mjackson/3c097e08ff9276ce80c1 to your computer and use it in GitHub Desktop.
stuff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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