export default function ErrorState({ message = 'Something went wrong.', onRetry, }: { message?: string onRetry?: () => void }) { return (
{message}