Files
MatrixGW/matrixgw_frontend/src/widgets/auth/AuthSingleMessage.tsx
2025-11-04 19:43:51 +01:00

14 lines
322 B
TypeScript

import { Button } from "@mui/material";
import { Link } from "react-router";
export function AuthSingleMessage(p: { message: string }): React.ReactElement {
return (
<>
<p style={{ textAlign: "center" }}>{p.message}</p>
<Link to={"/"}>
<Button>Go back home</Button>
</Link>
</>
);
}