Skip to content

Instantly share code, notes, and snippets.

@yosvelquintero
Last active September 9, 2020 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yosvelquintero/269f546a669bcab15a3b3f19a0de79c8 to your computer and use it in GitHub Desktop.
Save yosvelquintero/269f546a669bcab15a3b3f19a0de79c8 to your computer and use it in GitHub Desktop.
@Component({
// ...
})
export class SignInComponent {
onSubmit(): void {
this.store.dispatch(
new SignIn({
email: this.form.value.email,
password: this.form.value.password,
})
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment