import Text from "./lib_components/text"; interface ErrorStateProps { message?: string; onRetry?: () => void; } export const ErrorState = ({ message, onRetry }: ErrorStateProps) => { return (

{message && (

{message}

)} {onRetry && ( )}
); };