Files
old-ribica/front-ui/app/components/browsing/bySection.js
Edin Dazdarevic 0abbdcec1f more reformatting
2015-01-25 16:42:16 +01:00

20 lines
455 B
JavaScript

var React = require('react'),
Router = require('react-router');
var BySection = React.createClass({
mixins: [Router.State],
render : function() {
return ( <div>
<div className='col-md-2'>
Here goes section for refining search, by section
</div>
<div className='col-md-10'>
<h2> Welcome to section {this.getParams().id} </h2>
</div>
</div> )
}
});
module.exports = BySection;