- moved states

This commit is contained in:
brendanlaschke
2023-08-14 22:12:29 +02:00
parent 39bbe02c86
commit a7f4326419
15 changed files with 33 additions and 15 deletions

View File

@ -0,0 +1,11 @@
import { atom } from 'recoil';
import { PositionType } from '@/ui/context-menu/types/PositionType';
export const contextMenuPositionState = atom<PositionType>({
key: 'contextMenuPositionState',
default: {
x: null,
y: null,
},
});