Skip to content

Commit

Permalink
docs: removes using exact prop from block codes at "Let's form the ro…
Browse files Browse the repository at this point in the history
…utes" section
  • Loading branch information
corocoto committed Jul 30, 2023
1 parent 2d9965c commit 6e98f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const TestPage = lazy(() => import("./test"));
export const Routing = () => {
return (
<Routes>
<Route exact path="/" element={<TestPage/>} />
<Route path="/" element={<TestPage/>} />
<Route path="*" element={<Navigate to="/" />} />
</Routes>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const TestPage = lazy(() => import("./test"));
export const Routing = () => {
return (
<Routes>
<Route exact path="/" element={<TestPage/>} />
<Route path="/" element={<TestPage/>} />
<Route path="*" element={<Navigate to="/" />} />
</Routes>
);
Expand Down

0 comments on commit 6e98f9d

Please sign in to comment.