# json-schema-editor-antd **Repository Path**: lin-mt/json-schema-editor-antd ## Basic Information - **Project Name**: json-schema-editor-antd - **Description**: Json Schema 编辑器(Antd) - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://arco.design/material/detail/?name=@quiet-front-end/json-schema-editor-antd - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-04-14 - **Last Updated**: 2024-01-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Json Schema 可视化编辑器(Antd) ## 快速开始 ``` # 开发 npm run dev # 构建 npm run build # 发布前预览 npm run prepublishOnly && arco preview # 发布至物料平台(需先发布 NPM 包) arco sync ``` ## 示例 ```typescript jsx import JsonSchemaEditor from '@quiet-front-end/json-schema-editor-antd'; import '@quiet-front-end/json-schema-editor-antd/dist/css/index.css'; import { useEffect } from 'react'; export default () => { const [jsonData, setJsonData] = useEffect({}); return ( { setJsonData(data); }} /> ) } ``` ![示例](./image/img.png)