Suppose we are using Row from React-Bootstrap... How do we style it without using a wrapper or inner element:
<Row>
<div className='some-style'>
...
</Row>
Ideally, we could just do:
<Row className='some-style'>
...
</Row>
But this doesn't work and I'd presume it's because React-Bootstrap
does not know where the className
goes within the <Row>
component (it should just style the <div>
that has the row styles).