5 lines
203 B
TypeScript
5 lines
203 B
TypeScript
import { atom } from 'jotai';
|
|
|
|
export const showCommentPopupAtom = atom(false);
|
|
export const activeCommentIdAtom = atom<string | null>(null);
|
|
export const draftCommentIdAtom = atom<string | null>(null);
|