* create comment * reply to comment thread * edit comment * delete comment * resolve comment
4 lines
123 B
TypeScript
4 lines
123 B
TypeScript
import { atom } from 'jotai';
|
|
import { Editor } from '@tiptap/core';
|
|
|
|
export const editorAtom = atom<Editor | null>(null);
|