Created
October 17, 2020 23:57
-
-
Save jessipearcy/d3c9e82053ebe05f298f1b3af93d55fb to your computer and use it in GitHub Desktop.
This file contains 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-toolbar></app-toolbar> | |
<app-habit-form *ngIf="formOpen; else allHabits" | |
(onExit)="closeForm()" | |
[habit]="editHabit"></app-habit-form> | |
<ng-template #allHabits> | |
<app-all-habits | |
(addEvent)="onAdding()" | |
(editEvent)="onEditing($event)"></app-all-habits> | |
</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment