adminFront/src/pages/dashboard/ModalUser/UserTab.tsx

67 lines
2.3 KiB
TypeScript
Raw Normal View History

2023-07-26 10:49:08 +00:00
import { Box, Typography, useTheme, useMediaQuery } from "@mui/material";
2023-07-25 07:47:20 +00:00
2023-07-27 12:49:47 +00:00
export const UserTab = () => {
2023-07-26 10:49:08 +00:00
const theme = useTheme();
const mobile = useMediaQuery(theme.breakpoints.down(700));
return (
<Box
sx={{
display: mobile ? "block" : "flex",
columnGap: "15px",
padding: "25px",
}}
>
<Box sx={{ maxWidth: "300px", width: "100%" }}>
<Box sx={{ marginBottom: "25px" }}>
<Typography sx={{ lineHeight: "20px" }}>ID</Typography>
<Typography sx={{ lineHeight: "20px", fontWeight: "bold" }}>
{" "}
2023-07-27 12:49:47 +00:00
2810
2023-07-26 10:49:08 +00:00
</Typography>
</Box>
<Box sx={{ marginBottom: "25px" }}>
<Typography sx={{ lineHeight: "20px" }}>Дата регистрации</Typography>
<Typography sx={{ lineHeight: "20px", fontWeight: "bold" }}>
2023-07-27 12:49:47 +00:00
17.02.2023
2023-07-26 10:49:08 +00:00
</Typography>
</Box>
<Box sx={{ marginBottom: "25px" }}>
<Typography sx={{ lineHeight: "20px" }}>Email</Typography>
<Typography sx={{ lineHeight: "20px", fontWeight: "bold" }}>
2023-07-27 12:49:47 +00:00
emailexamle@gmail.com
2023-07-26 10:49:08 +00:00
</Typography>
</Box>
<Box sx={{ marginBottom: "25px" }}>
<Typography sx={{ lineHeight: "20px" }}>Телефон</Typography>
<Typography sx={{ lineHeight: "20px", fontWeight: "bold" }}>
2023-07-27 12:49:47 +00:00
+7 123 456 78 90
2023-07-26 10:49:08 +00:00
</Typography>
</Box>
<Box sx={{ marginBottom: "25px" }}>
<Typography sx={{ lineHeight: "20px" }}>Тип:</Typography>
<Typography sx={{ lineHeight: "20px", fontWeight: "bold" }}>
2023-07-27 12:49:47 +00:00
НКО
2023-07-26 10:49:08 +00:00
</Typography>
</Box>
2023-07-25 07:47:20 +00:00
</Box>
2023-07-26 10:49:08 +00:00
<Box sx={{ maxWidth: "300px", width: "100%" }}>
<Box sx={{ marginBottom: "25px" }}>
<Typography sx={{ lineHeight: "20px" }}>ФИО:</Typography>
<Typography sx={{ lineHeight: "20px", fontWeight: "bold" }}>
2023-07-27 12:49:47 +00:00
Куликов Геннадий Викторович
2023-07-26 10:49:08 +00:00
</Typography>
</Box>
<Box sx={{ marginBottom: "25px" }}>
<Typography sx={{ lineHeight: "20px" }}>
Внутренний кошелек
</Typography>
<Typography sx={{ lineHeight: "20px", fontWeight: "bold" }}>
2023-07-27 12:49:47 +00:00
2 096 руб.
2023-07-26 10:49:08 +00:00
</Typography>
</Box>
2023-07-25 07:47:20 +00:00
</Box>
</Box>
2023-07-26 10:49:08 +00:00
);
};