2015-01-25 13:38:25 +01:00
|
|
|
var React = require('react'),
|
|
|
|
|
Router = require('react-router');
|
|
|
|
|
|
|
|
|
|
var BySection = React.createClass({
|
2015-01-25 16:42:16 +01:00
|
|
|
mixins: [Router.State],
|
2015-01-25 13:38:25 +01:00
|
|
|
render : function() {
|
2015-01-25 16:42:16 +01:00
|
|
|
return ( <div>
|
2015-01-25 13:38:25 +01:00
|
|
|
|
2015-01-25 16:42:16 +01:00
|
|
|
<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> )
|
2015-01-25 13:38:25 +01:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
module.exports = BySection;
|