JSFiddle - React, Tailwind, and code Playground
HTML
<div class="grid">
<div class="item-left">
</div>
<div class="item-right">
</div>
<div class="item-right">
</div>
<div class="item-right">
</div>
</div>
CSS
.grid {
display: grid;
grid-gap: 10px;
width: 200px;
}
.item-left {
background: lightblue;
padding-bottom: 120%;
}
.item-right {
background: tomato;
padding-bottom: 60%;
}