clash-verge/src/pages/_routers.tsx

34 lines
596 B
TypeScript
Raw Normal View History

2022-01-16 03:25:50 +08:00
import LogsPage from "./logs";
import ProxiesPage from "./proxies";
import ProfilesPage from "./profiles";
import SettingsPage from "./settings";
2022-01-16 03:11:07 +08:00
import ConnectionsPage from "./connections";
export const routers = [
{
2022-01-16 03:25:50 +08:00
label: "Proxies",
2022-01-16 03:11:07 +08:00
link: "/",
2022-01-16 03:25:50 +08:00
ele: ProxiesPage,
2022-01-16 03:11:07 +08:00
},
{
2022-01-16 03:25:50 +08:00
label: "Profiles",
2022-01-16 03:11:07 +08:00
link: "/profile",
2022-01-16 03:25:50 +08:00
ele: ProfilesPage,
2022-01-16 03:11:07 +08:00
},
{
label: "Connections",
link: "/connections",
ele: ConnectionsPage,
},
{
2022-01-16 03:25:50 +08:00
label: "Logs",
link: "/logs",
ele: LogsPage,
2022-01-16 03:11:07 +08:00
},
{
2022-01-16 03:25:50 +08:00
label: "Settings",
link: "/settings",
ele: SettingsPage,
2022-01-16 03:11:07 +08:00
},
];