So, within my render function, the following code is used:
render() {
<div>
<form id="one">
<TextField id="t1" ... />
<Button id="b1" />
</form>
<div id="empty"><div/>
<form id="two">
<TextField id="t2" ... />
<TextField id="t3" ... />
<Button id="b2" />
</form>
</div>
}
I am trying to horizontally center all of the elements. The 'empty' div between the forms is intended to create spacing.
Could you please advise on how I can achieve this?
Thank you in advance!