marindrag

Results 2 comments of marindrag

@josdejong, @xyxc0673, would you let me know what is the final solution?

``` export const JsonEditor: FC = memo( ({ schema, mode, initialJsonValue, onChange }: IJsonEditorProps) => { const validate = ajv.compile(schema) const containerRef = useRef(null) const editorRef = useRef(null) const handleChange...