React - Component Full Screen (with height 100%) React - Component Full Screen (with height 100%) reactjs reactjs

React - Component Full Screen (with height 100%)


html, body, #app, #app>div {  height: 100%}

This will ensure all the chain to be height: 100%


You could also do:

body > #root > div {  height: 100vh;}


try <div style = {{height:"100vh"}}> </div>