Hello, I have a component which does not render in the index.html when app irs running on port 4200
<body> ... <app-upload></app-upload> <app-root></app-root> </body>
upload.component.html
<h2>File Upload</h2> <form> <input type="file" (change)="onFileSelected($event)" /> <button (click)="uploadFile()">Upload</button> </form> <p *ngIf="message">{{ message }}</p>