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