implement cron page (#7)

This commit is contained in:
UUBulb
2024-11-20 00:19:40 +08:00
committed by GitHub
parent 2bf2639080
commit e37f30d335
20 changed files with 555 additions and 28 deletions

View File

@@ -20,6 +20,7 @@ import NATPage from './routes/nat';
import ServerGroupPage from './routes/server-group';
import NotificationGroupPage from './routes/notification-group';
import { ServerProvider } from './hooks/useServer';
import CronPage from './routes/cron';
const router = createBrowserRouter([
{
@@ -39,6 +40,10 @@ const router = createBrowserRouter([
path: "/dashboard/service",
element: <ServicePage />,
},
{
path: "/dashboard/cron",
element: <CronPage />,
},
{
path: "/dashboard/ddns",
element: <DDNSPage />,