import { atom } from 'jotai'; import { Editor } from '@tiptap/core'; export const editorAtom = atom(null); export const titleEditorAtom = atom(null); export type EditorAtomType = typeof editorAtom; export type TitleEditorAtomType = typeof titleEditorAtom;