Last active
August 20, 2018 21:01
-
-
Save brachi-wernick/9bf0a6fa07fa4f4269cf637ecde54a53 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@Activate(['HERO_READ']) | |
@Component({ | |
selector: 'hero-list', | |
template: ` | |
<ul > | |
<li *ngFor="let hero of heros"> | |
{{hero.name}} | |
</li> | |
</ul> | |
` | |
}) | |
export class HeroListComponent { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment