improve comment

This commit is contained in:
Michael Peters 2024-12-18 15:09:44 -08:00
parent da29115c33
commit ccc0572ea1

View File

@ -133,7 +133,7 @@ export interface ContextProps {
children: ReactNode;
}
// you should create a component like context-menu.tsx instead of using this class directly.
// you should create a component like ContextMenu instead of using this class directly.
const Context: FC<ContextProps> = (props: ContextProps) => {
const { rootRef, relativeToRef, relativeToPos, alignment, realignDeps, children } = props;