const options = [
{
label: "Single",
value: "single",
},
{
label: "Married",
value: "married",
},
{
label: "Other",
value: "other",
},
]
function App() {
const initialValues = {
relationshipStatus: "",
}
return (
<Form initialValues={initialValues}>
<Select
name="relationshipStatus"
label="Relationship status"
placeholder="Please select"
options={options}
/>
</Form>
)
}
render(<App />)