Is there any way to render only the content of the component by hiding the tags?
How it works:
<ul>
<li-component> </li-component>
</ul>
Render:
<ul>
<li-component>
<li>
Frase
</li>
</li-component>
</ul>
It keeps the <li-component>
tag
Desired result:
<ul>
<li>
Frase
</li>
</ul>