refactor: reorganize imports in DataTable components and update index exports

This commit is contained in:
Marco Beretta 2025-09-25 22:13:39 +02:00
parent 905cef1ac2
commit 78a0dd2884
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
4 changed files with 6 additions and 4 deletions

View file

@ -2,7 +2,9 @@ import { memo } from 'react';
import { flexRender } from '@tanstack/react-table';
import type { Row, ColumnDef } from '@tanstack/react-table';
import type { TableColumn } from './DataTable.types';
import { Checkbox, TableCell, TableRow, Skeleton } from '~/components';
import { TableCell, TableRow } from '../Table';
import { Checkbox } from '../Checkbox';
import { Skeleton } from '../Skeleton';
import { cn } from '~/utils';
export const SelectionCheckbox = memo(