Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <mat-card>
  2. <mat-card-content>
  3. <img class="pokemon-img" [src]="pokemon?.image" />
  4.  
  5. <h1 class="name">{{ pokemon?.name }}</h1>
  6.  
  7. <mat-chip-list>
  8. <mat-chip color="primary" *ngFor="let type of pokemon?.types">{{ type }}</mat-chip>
  9. </mat-chip-list>
  10.  
  11. <div class="mat-table">
  12. <div class="mat-header-row">
  13. <div class="mat-header-cell">Name</div>
  14. <div class="mat-header-cell level-header">Level learned at</div>
  15. </div>
  16. <div class="mat-row" *ngFor="let move of pokemon?.moves">
  17. <div class="mat-cell move-name">{{ move?.name }}</div>
  18. <div class="mat-cell move-level">{{ move?.levelLearnedAt }}</div>
  19. </div>
  20. </div>
  21. </mat-card-content>
  22. </mat-card>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement