Within my "event.component" file, I have a nested component (app-grouplist)
<div class="group-list">
<app-grouplist
[hasStarted]="started"
[hasEnded]="ended"
Displaying Loading Groups... </app-grouplist>
</div>
Upon the initial page load, the child component does not appear right away. My goal is to display the "Loading Groups..." message until the child component becomes visible.