fix: circular dependencies in DataTable

This commit is contained in:
Danny Avila 2025-07-15 23:54:58 -04:00 committed by Marco Beretta
parent 8e1b00da2a
commit b11ba35790
No known key found for this signature in database
GPG key ID: D918033D8E74CC11

View file

@ -13,20 +13,13 @@ import {
getFilteredRowModel,
} from '@tanstack/react-table';
import type { Table as TTable } from '@tanstack/react-table';
import {
Button,
Table,
Checkbox,
TableRow,
TableBody,
TableCell,
TableHead,
TableHeader,
AnimatedSearchInput,
Skeleton,
} from './';
import { Table, TableRow, TableBody, TableCell, TableHead, TableHeader } from './Table';
import AnimatedSearchInput from './AnimatedSearchInput';
import { TrashIcon, Spinner } from '~/svgs';
import { useMediaQuery } from '~/hooks';
import { Skeleton } from './Skeleton';
import { Checkbox } from './Checkbox';
import { Button } from './Button';
import { cn } from '~/utils';
type TableColumn<TData, TValue> = ColumnDef<TData, TValue> & {