Here is the code: I have a div on the left with a light blue colour and it should have a height of 100%
const styles = {width:'80px',backgroundColor:'rgb(241, 242, 250)',height:'100'}
function Leftdash () {
return (
<div>
<div>
<div style = {styles}>
<div>hi</div>
</div>
</div>
</div>
)
}
ReactDOM.render(
<Leftdash />,
document.getElementById("react")
);
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.8.4/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.8.4/umd/react-dom.production.min.js"></script>
<div id="react"></div>