Add Contact route

This commit is contained in:
Ray 2023-09-05 09:05:06 +00:00 committed by GitHub
parent 3d02f029e2
commit 0726adcb28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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