interface ExperienceInputFieldProps {
    key: string;
    label: string;
    optionValues: {
        label: string;
        value: string;
    }[];
    placeholder: string;
    postfixText: string;
}

Properties

key: string

Key for the field to place inside the form state

label: string

Label for the field

optionValues: {
    label: string;
    value: string;
}[]

Options for the select field

Type declaration

  • label: string
  • value: string
placeholder: string

Placeholder for the field

postfixText: string

Postfix text

Generated using TypeDoc