Skip to content
Snippets Groups Projects
Unverified Commit a8425862 authored by GyDi's avatar GyDi
Browse files

feat: rename page

parent a3a3db6a
No related branches found
No related tags found
No related merge requests found
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 = [ ...@@ -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,
}, },
]; ];
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment