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

6 lines
194 B
TypeScript
Raw Normal View History

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