Linking Firebase Databse with Signup

This commit is contained in:
Ray 2023-09-12 09:28:56 +00:00 committed by GitHub
parent 1e968638ab
commit ea64819d91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 21 deletions

View File

@ -14,6 +14,7 @@ import { Signup } from "./pages/Signup"
function App() { function App() {
const FBapp = initializeApp(FirebaseConfig) const FBapp = initializeApp(FirebaseConfig)
const FBauth = getAuth(FBapp)
// navigation array // navigation array
const navItems = [ const navItems = [
{ label: "Home", link: "/" }, { label: "Home", link: "/" },
@ -37,6 +38,15 @@ const [nav, setNav ] = useState( navItems )
const saySomething = (word) => { const saySomething = (word) => {
alert(word) alert(word)
} }
// signing up a user
const signUp = (email, password) => {
createUserWithEmailAndPassword(FBauth, email, password)
.then((userCredential) => {
// do something
})
.catch((error) => console.log(error.message))
}
return ( return (
<div className="App"> <div className="App">
<Header items={nav} /> <Header items={nav} />
@ -49,4 +59,5 @@ const [nav, setNav ] = useState( navItems )
</div> </div>
); );
} }
export default App; export default App;