Skip to content

Instantly share code, notes, and snippets.

@jessipearcy
Created October 6, 2020 14:34
Show Gist options
  • Save jessipearcy/7efc097ebc3742086fef7012df752e30 to your computer and use it in GitHub Desktop.
Save jessipearcy/7efc097ebc3742086fef7012df752e30 to your computer and use it in GitHub Desktop.
export class AppComponent implements OnInit {
public formOpen = false;
ngOnInit(): void {}
onAdding() {
this.formOpen = true;
}
closeForm() {
this.formOpen = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment