I would like to dynamically load a component. So I tried this approach but it didn't worked:
<page-{{current_page}}></page-{{current_page}}>
Currently I'm using this approach but it doesn't seems efficient:
<div *ngIf="current_page==1">
<page-1></page-1>
</div>
<div *ngIf="current_page==2">
<page-2></page-2>
</div>
...