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