Skip to content

Instantly share code, notes, and snippets.

@jessipearcy
Created October 6, 2020 14:30
Show Gist options
  • Save jessipearcy/bf7594a211df548c5a41b8d129616cd3 to your computer and use it in GitHub Desktop.
Save jessipearcy/bf7594a211df548c5a41b8d129616cd3 to your computer and use it in GitHub Desktop.
export class HabitFormComponent implements OnInit {
@Output() onExit = new EventEmitter();
// ...Code Omitted for Brevity...
exitForm() {
this.habitForm.reset();
this.onExit.emit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment