import { View } from '@tarojs/components'; import { classNames } from 'mixlea-utils-js'; import type { PropsWithChildren } from 'react'; import type { MlBaseFormListProps } from './types'; export function FormItem({ rowHeightSize = 'sm', columnTitleWordNumber = 4, children, }: PropsWithChildren>) { return ( {children} ); }