Angular - HTTP Client
Given this Angular template snippet:
What will be displayed if
<div *ngIf="error()" role="alert">Error: {{ error() }}</div>
<div *ngIf="isLoading()">Loading...</div>
<div *ngIf="!isLoading() && !error()">Data loaded</div>What will be displayed if
isLoading() returns false and error() returns "Network error"?