Modify Homepage Route Path

This commit is contained in:
Ray 2023-09-05 09:08:53 +00:00 committed by GitHub
parent b710dadc75
commit 82f29ee711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ function App() {
</Container>
</Navbar>
<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="/contact" element={ <About greeting="Hey you, this is contact page!" /> } />
</Routes>