2021-12-19 19:01:32 +03:00
|
|
|
import { Box, Typography } from "@mui/material";
|
|
|
|
import SettingVerge from "../components/setting-verge";
|
|
|
|
import SettingClash from "../components/setting-clash";
|
2021-12-11 20:13:08 +03:00
|
|
|
|
2021-12-08 18:36:34 +03:00
|
|
|
const SettingPage = () => {
|
2021-12-09 18:28:57 +03:00
|
|
|
return (
|
2021-12-19 19:01:32 +03:00
|
|
|
<Box sx={{ width: 0.9, maxWidth: 850, mx: "auto", mb: 2 }}>
|
2021-12-11 20:13:08 +03:00
|
|
|
<Typography variant="h4" component="h1" sx={{ py: 2 }}>
|
|
|
|
Setting
|
|
|
|
</Typography>
|
|
|
|
|
2021-12-19 19:01:32 +03:00
|
|
|
<SettingVerge />
|
2021-12-11 20:13:08 +03:00
|
|
|
|
2021-12-19 19:01:32 +03:00
|
|
|
<SettingClash />
|
2021-12-09 18:28:57 +03:00
|
|
|
</Box>
|
|
|
|
);
|
2021-12-08 18:36:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export default SettingPage;
|