Fix issue where button on about page was broken.
This commit is contained in:
parent
2634dfd94e
commit
d9055c47e1
|
@ -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 New Issue