Is it possible to add a component and keep only it's content?
Example of using a component:
<my-custom-component></my-custom-component>
This is rendered like:
<my-custom-component>
<div> ... </div>
</my-custom-component>
Is it possible to render the content only? In this case it would be:
<div> ... </div>
I need this cause is screwing my CSS rules.