Skip to content

Instantly share code, notes, and snippets.

@Jezternz
Jezternz / ReactJsonEditor.js
Created February 3, 2024 04:16
ReactJsonEditor
import React, { useEffect, useMemo, useRef, useState } from "react";
import JSONEditor from "jsoneditor/dist/jsoneditor";
import "jsoneditor/dist/jsoneditor.css";
/* Minimal React Wrapper for 'jsoneditor' (https://www.npmjs.com/package/jsoneditor) */
// Uncontrolled Usage Example:
// return <ReactJsonEditor value={value}/>;
// Controlled Usage Example:
// const [value, setValue] = useState({});