mirror of
https://github.com/reiyua/RaysBookClub.git
synced 2026-01-20 07:37:46 +00:00
Fix issue where button on about page was broken.
This commit is contained in:
parent
2634dfd94e
commit
d9055c47e1
1 changed files with 1 additions and 1 deletions
|
|
@ -151,7 +151,7 @@ function App() {
|
||||||
<StorageContext.Provider value={FBstorage}>
|
<StorageContext.Provider value={FBstorage}>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/" element={<Home items={data} />} />
|
<Route path="/" element={<Home items={data} />} />
|
||||||
<Route path="/about" element={<About greeting="Hey you, this is about page!" />} />
|
<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="/contact" element={<Contact greeting="Hey you, this is contact page!" />} />
|
||||||
<Route path="/signup" element={<Signup handler={signUp} />} />
|
<Route path="/signup" element={<Signup handler={signUp} />} />
|
||||||
<Route path="/signout" element={<Signout handler={logOut} />} />
|
<Route path="/signout" element={<Signout handler={logOut} />} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue