'use client'; import { Card } from '@/components/ui/Card'; import { Button } from '@/components/ui/Button'; import { Icons } from '@/components/ui/Icon'; interface PlayerErrorProps { error: string; onBack: () => void; onRetry: () => void; } export function PlayerError({ error, onBack, onRetry }: PlayerErrorProps) { return (
{error}