Refer Signup page to Signup function from Firebase

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

View File

@ -54,7 +54,7 @@ function App() {
<Route path="/" element={<Home greeting="Hey you're at home!" />} />
<Route path="/about" element={<About greeting="Hey you, this is about page!" handler={saySomething} />} />
<Route path="/contact" element={<Contact greeting="Hey you, this is contact page!" />} />
<Route path="/signup" element={<Signup />} />
<Route path="/signup" element={<Signup handler={signUp}/>} />
</Routes>
</div>
);