Last active
March 31, 2020 14:28
-
-
Save Serhansolo/29c98f9b4bb1c85b52b505a556a25224 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
signUp() { | |
firebase | |
.auth() | |
.createUserWithEmailAndPassword(this.email, this.password) | |
.then(response => { | |
console.log("Success! ", response); | |
}) | |
.catch(error => { | |
console.log("Failed!", error); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment