ixion/client/src/components/ErrorCard.tsx

17 lines
436 B
TypeScript

import { Card, CardContent, Typography } from '@mui/material';
export default function ErrorCard({ error }: { error: string }) {
return (
<Card className="mb-2">
<CardContent className="p-4">
<Typography align="center" variant="h6">
¯\_(ツ)_/¯
</Typography>
<Typography align="center" variant="subtitle1">
{error}
</Typography>
</CardContent>
</Card>
);
}