I am using the   tag in jsx and it is not rendering the space. The following is a small snippet of my code.Please help.
var Reporting=React.createClass({
  render: function(){
    return(
      <div style={divPositionReporting}>
          <p>Pricing Reports</p>
          <hr></hr>
          Select Scenario:  
          <select>
            <option></option>
          </select>
          <button type="button">Get Pricing Report</button>
          <br/>
          Select Takeout Scenario: 
          <select>
            <option></option>
          </select>
          <button type="button">Get Pricing Report</button>
          <br/>
      </div>
    );
  },
});
 
     
     
     
     
     
     
     
     
     
    