Last active
September 4, 2017 20:53
-
-
Save jecfish/4ac861a94c6158817d852ba45dc4a302 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
<!-- app.component.html --> | |
<my-top-bar (reset-clicked)="resetGame()"></my-top-bar> | |
<my-top-message [time]="currentTime"></my-top-message> | |
<my-cards [cards]="cards" (card-flipped)="startGame()" (all-cards-matched)="stopGame()"></my-cards> | |
<my-pop-up-modal *ngIf="isGameCompleted" [time]="currentTime" (reset-clicked)="resetGame()"></my-pop-up-modal> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment