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