import { ScrollView, View } from '@tarojs/components'; import type { PropsWithChildren } from 'react'; import type { MlBaseFormListProps } from './types'; export function Body({ formListData, children }: PropsWithChildren>) { return ( {formListData.length > 0 ? ( {children} ) : ( empty )} ); }