I have a checkbox generated by react-bootstrap and it's rendered like a label containing input tag and label title. I want to have it so that the label title comes first.
Checkbox from react-bootstrap:
<Checkbox
checked={checkedStatus}
onChange={(e) => this.handleToggle(e, checkBoxValue)}
>{title}</Checkbox>
Rendered HTML:
<div class="checkbox">
<label title="">
<input type="checkbox" value="">
Did not perform
</label>
</div>
Output: