Skip to content

Commit

Permalink
Update App.tsx
Browse files Browse the repository at this point in the history
Added both route path to test features like navigation bar and dropdown list
  • Loading branch information
Fordinh4 committed Feb 3, 2024
1 parent 2565387 commit 8f79085
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
import Test from "./routes/Test";
import DropdownItem from "./components/DropdownItem";
import SortDropdownListTestRoute from "./routes/SortDropdownListTestRoute";
import NavigaionTest from "./routes/NavigationTest";

const router = createBrowserRouter([
{
Expand All @@ -19,6 +20,10 @@ const router = createBrowserRouter([
path: "/SortDropdownListTestRoute",
element: <SortDropdownListTestRoute />,
},
{
path: "/nav-test",
element: <NavigaionTest />,
},

]);

Expand Down

0 comments on commit 8f79085

Please sign in to comment.