import React from "react"; export default function ErrorCard({ retry, retryText, text }: { retry?: () => void; retryText?: string; text: string; }) { const buttonText = retryText || "Try Again"; return (