Json Schema Editor
npm install react-json-schema-editor-antd


Antd Design 风格的 Json Schema 可视化编辑器。
Arco Design 风格:https://github.com/lin-mt/json-schema-editor-arco
``shell`
npm install react-json-schema-editor-antd
`jsx
import { useState } from 'react';
import JsonSchemaEditor from 'react-json-schema-editor-antd';
export default () => {
const [jsonSchema, setJsonSchema] = useState();
return (
onChange={(data) => {
setJsonSchema(data);
}}
/>
);
};
`
`bashinstall dependencies
$ yarn install
MIT