import { Table } from "@mantine/core"; import { Table as TanstackTable } from "@tanstack/react-table"; import { Button } from "../button"; export function DataTableError({ table, message, description, onRetry, }: { table: TanstackTable; message?: string; description?: string; onRetry?: () => void; }) { return (

{message ?? "No results"}

{description ?? "No results found"}

{onRetry && ( )}
); }