Within the realm of React, I find myself dealing with a component known as DivHelper. This particular component is tasked with generating two divs stacked vertically on top of each other. However, my desire is to have these divs positioned side by side. The challenge lies in the fact that I am unable to access the code responsible for generating the divs dynamically within DivHelper. Is it possible to gain access to these generated divs?
As an illustration:
///A snippet of arbitrary code
<DivHelper/>
///Additional lines of code
Thus resulting in:
///A snippet of arbitrary code
<div>1 Div</div>
<div>2 Div</div>
///Additional lines of code
Subsequently leading to the output:
1 Div
2 Div
What I truly aim for is to have them placed side by side but reversed (similar to floating elements).
2 Div 1 Div
Is there a feasible way to achieve this?