feat: view api service page

This commit is contained in:
2025-05-31 17:58:40 +02:00
parent dfc5587608
commit 944c650ab3
2 changed files with 203 additions and 0 deletions

View File

@ -12,6 +12,7 @@ import PersonalInfoPage from "./pages/PersonalInfo";
import ApiServicesPage from "./pages/ApiServices";
import AdminLayout from "./layout/AdminLayout";
import ApiServiceCreatePage from "./pages/ApiServices/Create";
import ViewApiServicePage from "./pages/ApiServices/View";
const router = createBrowserRouter([
{
@ -39,6 +40,10 @@ const router = createBrowserRouter([
children: [
{ index: true, element: <ApiServicesPage /> },
{ path: "create", element: <ApiServiceCreatePage /> },
{
path: "view/:serviceId",
element: <ViewApiServicePage />,
},
],
},
],