import { View } from '@tarojs/components'; import type { PropsWithChildren } from 'react'; import type { MlBaseFormProps } from './types'; export function FormBody(props: PropsWithChildren) { return {props.children}; }