I have a page with this html
<ion-content>
<page-etapas-processo></page-etapas-processo>
<page-retorno-financeiro></page-retorno-financeiro>
</ion-content>
Each component's declaration:
@Component({
selector: 'page-retorno-financeiro',
providers: [RetornoFinanceiroService],
templateUrl: 'retorno-financeiro.html'
})
&
@Component({
selector: 'page-etapas-processo',
providers: [AcompanhamentosService],
templateUrl: 'etapas-processo.html',
})
When those pages are rendered they have an output like this
<page-retorno-financeiro>
...
</page-retorno-financeiro>
<page-etapas-processo>
...
</page-etapas-processo>
I would like to render those pages without that selector tag surrounding them. How to do that?
I appreciate any help.