import { motion } from 'framer-motion' interface ErrorStateProps { message: string onRetry: () => void } export function ErrorState({ message, onRetry }: ErrorStateProps) { return (

Transmission failure

Packet lost.

{message}

Retry system
) }