Skip to content

Commit 784c6d4

Browse files
committed
fix(utils): Fix imports
1 parent f0b16bd commit 784c6d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Children, cloneElement, ReactElement, ReactNode } from 'react';
22

3-
import { MenuItemExternalProps } from 'components/MenuItem';
4-
import { Position } from 'types';
3+
import { MenuItemExternalProps } from './components/MenuItem';
4+
import { Position } from './types';
55

66
export const getCursorPosition = (e: MouseEvent): Position => {
77
const position = { x: e.clientX, y: e.clientY };

0 commit comments

Comments
 (0)