When trying to add a label to the rc-slider in the same row using bootstrap grid, I noticed that the label and slider are appearing on two separate rows.
<div className="row">
<div className="col">
Label:
</div>
<div className="col">
<Slider value={this.props.sample}
onChange={this.onSliderChange}
onAfterChange={this.onAfterChange}
defaultValue={13}
/>
</div>