/* Combining components together The most fundamental and useful part of React is that you can create any number of components and nest them just like you would any HTML tag. You pass down data to your components from parent components in a one-way data flow. Note: If you use something like Flux/Reflux you have a bit power when it comes to data storage and event handling. Using a Flux-like framework with React is very helpful. */ var ProductItem = React.createClass({ render: function () { return (