mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-02-05 13:10:08 +00:00
feat: responsive header, search boxes (#10)
This commit is contained in:
18
src/main.tsx
18
src/main.tsx
@@ -41,11 +41,23 @@ const router = createBrowserRouter([
|
||||
},
|
||||
{
|
||||
path: "/dashboard/service",
|
||||
element: <ServicePage />,
|
||||
element: (
|
||||
<ServerProvider withServer>
|
||||
<NotificationProvider withNotifierGroup>
|
||||
<ServicePage />
|
||||
</NotificationProvider>
|
||||
</ServerProvider>
|
||||
),
|
||||
},
|
||||
{
|
||||
path: "/dashboard/cron",
|
||||
element: <CronPage />,
|
||||
element: (
|
||||
<ServerProvider withServer>
|
||||
<NotificationProvider withNotifierGroup>
|
||||
<CronPage />
|
||||
</NotificationProvider>
|
||||
</ServerProvider>
|
||||
),
|
||||
},
|
||||
{
|
||||
path: "/dashboard/notification",
|
||||
@@ -53,7 +65,7 @@ const router = createBrowserRouter([
|
||||
},
|
||||
{
|
||||
path: "/dashboard/alert-rule",
|
||||
element: <AlertRulePage />,
|
||||
element: <NotificationProvider withNotifierGroup><AlertRulePage /></NotificationProvider>,
|
||||
},
|
||||
{
|
||||
path: "/dashboard/ddns",
|
||||
|
||||
Reference in New Issue
Block a user