import { atom } from 'jotai'; export const showCommentPopupAtom = atom(false); export const activeCommentIdAtom = atom(null); export const draftCommentIdAtom = atom(null);