Files
old-ribica/front-ui/app/components/browsing/byCategory.js
Edin Dazdarevic 301e40f976 reorganized stuff
2015-01-25 13:38:25 +01:00

14 lines
252 B
JavaScript

var React = require('react');
var ByCategory = React.createClass({
render: function() {
return (
<div>
<h3> Browse products by category</h3>
</div>
);
}
});
module.exports = ByCategory;