import { Alert } from '$src/lib/ui' import { theme } from '@latitude-data/client' export default function ErrorAlert({ error }: { error: Error }) { return (
{error.message}
) }