feat: rename page

This commit is contained in:
GyDi
2022-01-16 03:25:50 +08:00
parent a3a3db6abb
commit a8425862f0
5 changed files with 14 additions and 14 deletions

20
src/pages/settings.tsx Normal file
View File

@@ -0,0 +1,20 @@
import { Paper } from "@mui/material";
import BasePage from "../components/base-page";
import SettingVerge from "../components/setting/setting-verge";
import SettingClash from "../components/setting/setting-clash";
const SettingPage = () => {
return (
<BasePage title="Settings">
<Paper sx={{ borderRadius: 1, boxShadow: 2 }}>
<SettingVerge />
</Paper>
<Paper sx={{ borderRadius: 1, boxShadow: 2, mt: 3 }}>
<SettingClash />
</Paper>
</BasePage>
);
};
export default SettingPage;