UNPKG

@wufengteam/baguaeditor

Version:

低零融合编辑器封装

31 lines (30 loc) 683 B
import type { FC } from 'react'; import type { PageData } from '../../utils/wufeng'; import 'braft-editor/dist/index.css'; interface FormContentProps { /** * 最外层容器类名 */ className?: string; /** * 预览态h5前缀 */ previewH5Url: string; /** * 表单DSL数据 */ pageData: PageData | undefined; /** * 回退函数 */ onBack: () => void; /** * 应用ID */ appId: string; formId: string | undefined; catalogItemId: string | undefined; formContentType: number; } declare const FormContent: FC<FormContentProps>; export default FormContent;