mirror of
https://github.com/docmost/docmost.git
synced 2026-05-14 20:54:07 +08: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>('');
|