Skip to content

Instantly share code, notes, and snippets.

@LayZeeDK
Last active September 16, 2019 04:58
Show Gist options
  • Save LayZeeDK/cc6a83c35a91bca2d36653c1e9770cf4 to your computer and use it in GitHub Desktop.
Save LayZeeDK/cc6a83c35a91bca2d36653c1e9770cf4 to your computer and use it in GitHub Desktop.
Dashboard: Mixed component template
<h3>Top Heroes</h3>
<div class="grid grid-pad">
<a *ngFor="let hero of heroes" class="col-1-4"
routerLink="/detail/{{hero.id}}">
<div class="module hero">
<h4>{{hero.name}}</h4>
</div>
</a>
</div>
<app-hero-search></app-hero-search>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment