2023-12-17 13:22:21 +00:00
|
|
|
import { Box, Typography } from "@mui/material";
|
|
|
|
|
2024-02-08 13:42:31 +00:00
|
|
|
type Props = {
|
|
|
|
message: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const ApologyPage = ({ message }: Props) => {
|
|
|
|
|
2023-12-17 13:22:21 +00:00
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
sx={{
|
|
|
|
display: "flex",
|
|
|
|
alignItems: "center",
|
2023-12-17 21:28:57 +00:00
|
|
|
justifyContent: "center",
|
2024-02-08 13:42:31 +00:00
|
|
|
height: "100%",
|
2023-12-17 13:22:21 +00:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Typography
|
|
|
|
sx={{
|
|
|
|
textAlign: "center"
|
|
|
|
}}
|
2024-02-08 13:42:31 +00:00
|
|
|
>{message || "Что-то пошло не так"}</Typography>
|
2023-12-17 13:22:21 +00:00
|
|
|
</Box>
|
2024-02-08 13:42:31 +00:00
|
|
|
);
|
|
|
|
};
|