manifold/web/components/editor/utils.ts
2022-08-06 15:38:58 -07:00

11 lines
232 B
TypeScript

import { Editor, Content } from '@tiptap/react'
export function appendToEditor(editor: Editor | null, content: Content) {
editor
?.chain()
.focus('end')
.createParagraphNear()
.insertContent(content)
.run()
}