import { TableCell, TableRow } from "@/components/ui/table";
import { useGlobal } from "@/context/global";

export default function TableListError() {
  const { dict } = useGlobal();

  return (
    <TableRow>
      <TableCell>{dict.pages.project_list.table.data.error}</TableCell>
    </TableRow>
  );
}
