Skip to content

Instantly share code, notes, and snippets.

@blackpr
Created March 6, 2017 04:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blackpr/357119e18b895c53a362b8ca2ef2b59f to your computer and use it in GitHub Desktop.
Save blackpr/357119e18b895c53a362b8ca2ef2b59f to your computer and use it in GitHub Desktop.
<h1>Με ngIf/ngElse</h1>
<div *ngIf="question$ | async; let question; else loading">
<div>
<h3><i>{{question.question}}</i></h3>
<div>
{{question.category}}
</div>
<div>
{{question.difficulty}}
</div>
</div>
</div>
<ng-template #loading>
Χμ.. ποια να είναι η ερώτηση?
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment