Why does repeating <app-root>
tag in my index.html have no effect? For example, if my app.component.html has a simple Hello World
and if I write
<app-root></app-root>
<app-root></app-root>
<app-root></app-root>
in index.html, the browser displays only one Hello World
and not
Hello World
Hello World
Hello World