import { Stack, Text } from "@mantine/core"; import { IconAlertTriangle } from "@tabler/icons-react"; export default function ErrorDisplay({ error }: { error: string }) { return ( {error} ); }