import { PropsWithChildren } from 'react';
import { SkeletonCard } from './skeleton-card';
import { TableCell, TableRow } from './ui/table';
type IProps = { columnsLength: number };
function Row({ children, columnsLength }: PropsWithChildren & IProps) {
return (
{children}
);
}
export function TableSkeleton({ columnsLength }: { columnsLength: number }) {
return (
);
}
export function TableEmpty({ columnsLength }: { columnsLength: number }) {
return No results.
;
}