This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Field } from 'redux-form'; | |
import Text from '../components/text'; | |
import Select from '../components/select'; | |
export const FormComponent = ({ handleSubmit, onSubmit }) => { | |
return ( | |
<div className="flex flex-column justify-center items-center"> | |
<h1>My Very own Form</h1> | |
<form | |
className="w-80" | |
onSubmit={handleSubmit(onSubmit)} | |
> | |
... | |
<Field | |
name="meatChoice" | |
label="Meat Choice" | |
component={Select} | |
options={{ | |
pork: 'Pork', | |
beef: 'Beef', | |
chicken: 'Chicken' | |
}} | |
/> | |
... | |
export default FormComponent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment