"use client"; import { ColumnDef, } from "@tanstack/react-table"; import { DataTable } from "@app/components/ui/data-table"; interface DataTableProps { columns: ColumnDef[]; data: TData[]; onRefresh?: () => void; isRefreshing?: boolean; addClient?: () => void; } export function ClientsDataTable({ columns, data, addClient, onRefresh, isRefreshing }: DataTableProps) { return ( ); }