With tag helpers you could define an area where you could easily write content. For example, i could make a bootstrap card tag helper and easily render whatever i want inside the card body tag. With razor components how can i achieve this?
<div class="card"><div class="card-header"></div><div class="card-body"> @*render content here*@</div></div>