groups of articles now shown on ribica.ba/group/1/, background is in cloudinary

This commit is contained in:
Senad Uka
2015-03-23 07:21:53 +01:00
parent 0ff47313df
commit b534d15866
13 changed files with 143 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
var React = require('react'),
Router = require('react-router'),
RouteHandler = Router.RouteHandler,
AllItemsInGroup = require('../items/allItemsInGroup');
var ItemGroupPage = React.createClass({
render : function() {
return (
<div>
<div className='col-md-2'>
</div>
<div className='col-md-10'>
<AllItemsInGroup />
</div>
</div>
)
}
});
module.exports = ItemGroupPage;