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