Skip to content

Instantly share code, notes, and snippets.

@KTruong008
Last active September 23, 2017 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KTruong008/96098d1577ebf8c50b77827cffad9267 to your computer and use it in GitHub Desktop.
Save KTruong008/96098d1577ebf8c50b77827cffad9267 to your computer and use it in GitHub Desktop.
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