* Add Right click to take action * Create Position type and style row with background when selected
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { PositionType } from '@/ui/types/PositionType';
|
|
|
|
export const contextMenuPositionState = atom<PositionType>({
|
|
key: 'contextMenuPositionState',
|
|
default: {
|
|
x: null,
|
|
y: null,
|
|
},
|
|
});
|