Hi I am trying to create two buttons on the left and right edge with some text inbetween them in ReactJS but I cannot figure out the CSS style needed to do this. I tried align, float, etc but it seems like they are coupled together so whenever one moves, the other moves right next to it. Does anyone know how to do this?
This is what I have so far (although I have like 100 different variations):
<React.Fragment style={{float: 'left'}}><button>+</button></React.Fragment>
<React.Fragment style={{float: 'center'}}>Title</React.Fragment>
<React.Fragment style={{float: 'right'}}><button>-</button></React.Fragment>