Files
web/components/TempDesignSystem/Form/Country/country.ts
2024-04-16 09:24:31 +02:00

8 lines
162 B
TypeScript

import type { RegisterOptions } from "react-hook-form"
export type CountryProps = {
name?: string
placeholder?: string
registerOptions?: RegisterOptions
}