Skip to content

Instantly share code, notes, and snippets.

@mshk
Created October 26, 2017 05:57
Show Gist options
  • Save mshk/858e0d6586bae1900613a57e41873653 to your computer and use it in GitHub Desktop.
Save mshk/858e0d6586bae1900613a57e41873653 to your computer and use it in GitHub Desktop.
Firebase Auth Sample
handleEmailSineup(event) {
firebaseAuth()
.createUserWithEmailAndPassword(this.state.emailField, this.state.passwordField)
.catch(function (error) {
if (error) {
console.error('Error(' + error.code + '): ' + error.message);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment