import { atom } from 'recoil' export const contextMenuState = atom({ key: 'contextMenuState', default: { visible: false, x: 0, y: 0, }, dangerouslyAllowMutability: true, })