Skip to content

Commit 93ba83a

Browse files
authored
chore: fix circular deps (#1015)
1 parent 32f6d0a commit 93ba83a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/VirtualTable/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import type { CompareProps } from '@rc-component/context/lib/Immutable';
2+
import classNames from 'classnames';
3+
import { warning } from 'rc-util';
24
import * as React from 'react';
3-
import { INTERNAL_HOOKS } from '..';
5+
import { INTERNAL_HOOKS } from '../constant';
6+
import { makeImmutable } from '../context/TableContext';
47
import type { CustomizeScrollBody } from '../interface';
58
import Table, { DEFAULT_PREFIX, type TableProps } from '../Table';
69
import Grid from './BodyGrid';
710
import { StaticContext } from './context';
8-
import { makeImmutable } from '../context/TableContext';
9-
import { warning } from 'rc-util';
10-
import classNames from 'classnames';
1111

1212
const renderBody: CustomizeScrollBody<any> = (rawData, props) => {
1313
const { ref, onScroll } = props;

0 commit comments

Comments
 (0)