feat: rename page

This commit is contained in:
GyDi 2022-01-16 03:25:50 +08:00
parent a3a3db6abb
commit a8425862f0
No known key found for this signature in database
GPG Key ID: 1C95E0D3467B3084
5 changed files with 14 additions and 14 deletions

View File

@ -1,19 +1,19 @@
import LogPage from "./log"; import LogsPage from "./logs";
import ProxyPage from "./proxy"; import ProxiesPage from "./proxies";
import ProfilePage from "./profile"; import ProfilesPage from "./profiles";
import SettingPage from "./setting"; import SettingsPage from "./settings";
import ConnectionsPage from "./connections"; import ConnectionsPage from "./connections";
export const routers = [ export const routers = [
{ {
label: "Proxy", label: "Proxies",
link: "/", link: "/",
ele: ProxyPage, ele: ProxiesPage,
}, },
{ {
label: "Profile", label: "Profiles",
link: "/profile", link: "/profile",
ele: ProfilePage, ele: ProfilesPage,
}, },
{ {
label: "Connections", label: "Connections",
@ -21,13 +21,13 @@ export const routers = [
ele: ConnectionsPage, ele: ConnectionsPage,
}, },
{ {
label: "Log", label: "Logs",
link: "/log", link: "/logs",
ele: LogPage, ele: LogsPage,
}, },
{ {
label: "Setting", label: "Settings",
link: "/setting", link: "/settings",
ele: SettingPage, ele: SettingsPage,
}, },
]; ];