Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active July 3, 2023 12:41
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 NyaGarcia/5555bccfd912bd4b1dc354326becc1f1 to your computer and use it in GitHub Desktop.
Save NyaGarcia/5555bccfd912bd4b1dc354326becc1f1 to your computer and use it in GitHub Desktop.
NgBytes Standalone Pokemon Detail
<div class="detail">
<h2>{{ pokemon.name }}</h2>
<h4>{{ pokemon.type }} type</h4>
<div class="content">
<img [src]="pokemon.imageUrl" alt="Photo of a Pokemon" />
<div>
<p>Attack: {{ pokemon.attack }}</p>
<p>Defense: {{ pokemon.defense }}</p>
<p>
{{ pokemon.description }}
</p>
</div>
</div>
</div>
<button mat-raised-button color="primary" routerLink="">
Back to Pokemon List
</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment