Skip to content

Commit 1e73c89

Browse files
committed
fix(ContextMenu): Fix imports
1 parent 2d7e922 commit 1e73c89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ContextMenu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { HTMLAttributes, ReactNode, useEffect, useRef, useState } from 'react';
1+
import { HTMLAttributes, useEffect, useRef, useState } from 'react';
22
import cx from 'clsx';
33

44
import MenuItem from './MenuItem';
55
import Separator from './Separator';
66
import SubMenu from './SubMenu';
77
import { cloneChildren, getCursorPosition, validateMenuPosition } from '../utils';
8-
import { Position } from 'types';
8+
import { Position } from '../types';
99

1010
export interface ContextMenuProps extends HTMLAttributes<HTMLDivElement> {
1111
/**

0 commit comments

Comments
 (0)