'use client' import { useController } from 'react-hook-form' import { Select } from '../../Select' import { SelectProps } from '../../Select/types' export function FormSelect({ label, items, name }: SelectProps) { const { field, fieldState } = useController({ name, }) return (