| 12345678910111213141516171819202122232425 |
- import type { UseFormReturn } from 'react-hook-form'
- import { FormControl, FormField, Input } from 'ui'
- import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
- import type { DestinationPanelSchemaType } from './DestinationForm.schema'
- type DestinationNameInputProps = {
- form: UseFormReturn<DestinationPanelSchemaType>
- }
- export const DestinationNameInput = ({ form }: DestinationNameInputProps) => {
- return (
- <FormField
- control={form.control}
- name="name"
- render={({ field }) => (
- <FormItemLayout label="Name" layout="horizontal">
- <FormControl>
- <Input {...field} placeholder="My destination" />
- </FormControl>
- </FormItemLayout>
- )}
- />
- )
- }
|