import { type FC } from 'react' import type { FormikProps } from 'formik' import { Checkbox } from '@/components/ui/checkbox' import type { CreateProductType } from '../types/Types' type ServiceOptionsSectionProps = { formik: FormikProps } const ServiceOptionsSection: FC = ({ formik }) => { return (
گزینه‌های سرویس
formik.setFieldValue('pickupServe', checked)} />
formik.setFieldValue('inPlaceServe', checked)} />
) } export default ServiceOptionsSection