/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/ 'use client' import { useEditor, EditorContent } from '@tiptap/react' import StarterKit from '@tiptap/starter-kit' const Tiptap = ({ content, onUpdate }: { content: string, onUpdate: (newContent:string) => void }) => { const editor = useEditor({ extensions: [StarterKit], content: content || '

Type something here...

', onUpdate({ editor }) { onUpdate(editor.getHTML()); }, immediatelyRender: false, }) return } export default Tiptap