Skip to content

Commit 0908c93

Browse files
committed
fix typo
1 parent 1ba11a6 commit 0908c93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

my-app/src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ export default function App() {
2020
<Routes>
2121
<Route path="/" element={<Layout />}>
2222
<Route index element={<Home />} />
23-
<Route path="projects" element={<Projects />} />
24-
<Route path="contact" element={<Contact />} />
25-
<Route path="*" element={<NoPage />} />
23+
<Route path="/projects" element={<Projects />} />
24+
<Route path="/contact" element={<Contact />} />
25+
<Route path="/*" element={<NoPage />} />
2626
</Route>
2727
</Routes>
2828
</BrowserRouter>

0 commit comments

Comments
 (0)