So I want to make a structure something similar to this:
<div style={{height: "100vh"}}>
<div style={{height: "auto"}}>{content}</div>
<div style={{height: "auto"}}>{content}</div>
<div style={{height: "auto"}}>{content}</div>
</div>
For example, I have a 100%
width and height in vh
div and have 3 children inside displayed as columns, I want automatically the 3 divs to take size 33.3333% but in a perfect way.