import { messages } from "../utils/constants"; import RefreshButton from "./refresh-button"; const ErrorCard = ({ message }) => { return ( <>

❌ {messages.serverOverload}

Try again in few seconds

); } export default ErrorCard;