2015-01-25 13:38:25 +01:00
|
|
|
var React = require('react');
|
|
|
|
|
|
|
|
|
|
var ByCategory = React.createClass({
|
2015-01-25 14:04:10 +01:00
|
|
|
render: function() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<h3> Browse products by category</h3>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
2015-01-25 13:38:25 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
module.exports = ByCategory;
|