Files
docmost/client/src/features/comment/atoms/comment-atom.ts
2023-11-22 12:54:45 +00:00

6 lines
194 B
TypeScript

import { atom } from 'jotai';
export const showCommentPopupAtom = atom<boolean>(false);
export const activeCommentIdAtom = atom<string>('');
export const draftCommentIdAtom = atom<string>('');