Files
twenty_crm/front/src/modules/ui/tables/states/contextMenuPositionState.ts
Félix Malfait c53be4febc Add Right click to take action (#263)
* Add Right click to take action

* Create Position type and style row with background when selected
2023-06-09 18:36:39 +02:00

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,
},
});