"use client" import { EmptyState } from "@/shared/components/ui/empty-state" import { AlertTriangle } from "lucide-react" import { useTranslations } from "next-intl" export default function ParentError({ error, reset, }: { error: Error & { digest?: string } reset: () => void }) { const t = useTranslations("common") return (
) }