- 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
@@ -0,0 +1,7 @@
import { ReactElement } from 'react';
import { atom } from 'recoil';
export const contextMenuEntriesState = atom<ReactElement[]>({
key: 'contextMenuEntriesState',
default: [],
});