import React from 'react' import {amisRender, commonInfo} from '../../util/amis.tsx' function TaskAdd() { return (
{amisRender( { type: 'page', title: '任务添加', body: [ { debug: commonInfo.debug, type: 'form', wrapWithPanel: false, mode: 'horizontal', labelAlign: 'left', body: [], }, ], }, )}
) } export default React.memo(TaskAdd)