I have a simple component named rectangle with a simple css. Now I need to show a element example a div or another component inside that component. How would I achieve this?
I tried doing:
<app-rectangle>
<div>
...
</div>
</app-rectangle>
and nothing showed up as the output.