jsoneditor-react-sample
v1.10.2
Published
json编辑器简易版
Readme
JsonEditorSample
根据jsoneditor插件生成一个可快速使用的json编辑器,支持在react项目中。
使用方式
安装
npm add jsoneditor-react-sample --save使用
import { JsonEditor } from 'jsoneditor-react-sample'
const App = () => {
return (
<div>
<JsonEditor />
</div>
);
};
export default App;