more reformatting

This commit is contained in:
Edin Dazdarevic
2015-01-25 16:42:16 +01:00
parent e3997a1a48
commit 0abbdcec1f
5 changed files with 59 additions and 58 deletions

View File

@@ -2,17 +2,17 @@ var React = require('react'),
Router = require('react-router');
var BySection = React.createClass({
mixins: [Router.State],
mixins: [Router.State],
render : function() {
return ( <div>
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> )
<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> )
}
});