import React from 'react' import { Control, Controller, Path } from 'react-hook-form' import { DatePicker, IDatePickerProps } from '../DatePicker' interface IProps extends IDatePickerProps { control: Control id: Path } export const FormDatePicker = ({ control, id, ...rest }: IProps) => ( } name={id} /> )