import React from 'react' import { Button } from '../common/Button' import { ExclamationTriangleIcon } from '@heroicons/react/24/outline' interface ErrorStateProps { message?: string onRetry?: () => void } export function ErrorState({ message = 'Something went wrong.', onRetry }: ErrorStateProps) { return (

Error

{message}

{onRetry && ( )}
) }