Created
December 22, 2022 21:21
-
-
Save ssougnez/a5c08e0eb5b475bdd3065c71c1e6c03e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ngs-container [query$]="query$" | |
[data$]="pokemons$"> | |
<ng-template let-pokemons> | |
<div *ngFor="let p of pokemons; trackBy: trackByValue">{{ p.name }}</div> | |
</ng-template> | |
</ngs-container> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment