Files
docmost_custom/client/src/features/comment/atoms/comment-atom.ts
T

6 lines
203 B
TypeScript
Raw Normal View History

2023-11-09 16:52:34 +00:00
import { atom } from 'jotai';
export const showCommentPopupAtom = atom(false);
export const activeCommentIdAtom = atom<string | null>(null);
export const draftCommentIdAtom = atom<string | null>(null);