I have React app that would like to make 20% app bar on top and 80% or the rest of the height fulfill with parent height.
<div>
//Like to make 20% height
<div>
<p>App bar</p>
</div>
//Like to make 80% height
<div>
<div>Content A</div>
<div>Content B</div>
<div>Content C</div>
</div>
</div>