search page + sorting starts

This commit is contained in:
2024-05-17 18:29:41 +05:00
parent 338865fb56
commit 891204f2b4
20 changed files with 801 additions and 110 deletions
+5
View File
@@ -6,6 +6,7 @@ import Company from "./pages/Company";
import "./index.css";
import Complex from "./pages/Complex";
import ComplexWing from "./pages/ComplexWing";
import Search from "./pages/Search";
const router = createBrowserRouter([
{
@@ -32,6 +33,10 @@ const router = createBrowserRouter([
path: "/company",
element: <Company />,
},
{
path: "/search",
element: <Search />,
},
],
},
]);