import React, { useEffect, useRef } from 'react'; import type { JSONEditorPropsOptional } from 'vanilla-jsoneditor'; import { JSONEditor, Mode } from 'vanilla-jsoneditor'; const Editor: React.FC = (props) => { const editorRef = useRef(null); const container = useRef(null); useEffect(() => { editorRef.current = new JSONEditor({ target: container.current, props: { mode: Mode.text }, }); return () => { editorRef.current?.destroy(); }; }, []); useEffect(() => { editorRef.current?.updateProps(props); }, [props.content]); return
; }; export default Editor;