"use client" import type { JSX } from "react" import { AlertCircle } from "lucide-react" import { useTranslations } from "next-intl" import { EmptyState } from "@/shared/components/ui/empty-state" export default function ParentGradesError({ reset, }: { error: Error & { digest?: string } reset: () => void }): JSX.Element { const t = useTranslations("grades") return (
reset(), }} className="border-none shadow-none h-auto" />
) }