mirror of
https://github.com/docmost/docmost.git
synced 2025-11-17 07:11:09 +10:00
6 lines
194 B
TypeScript
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>('');
|