Skip to content

Instantly share code, notes, and snippets.

@actarian
Created December 16, 2019 21:41
Show Gist options
  • Save actarian/8570a4ae478b49cefe5d196dfb99126a to your computer and use it in GitHub Desktop.
Save actarian/8570a4ae478b49cefe5d196dfb99126a to your computer and use it in GitHub Desktop.
RxComp - FormComponent
onInit() {
const form = new FormGroup({
firstName: null,
lastName: null,
email: null,
}, RequiredValidator());
form.changes$.subscribe((changes) => {
this.pushChanges();
});
this.form = form;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment