Skip to content

Instantly share code, notes, and snippets.

@KTruong008
Created September 17, 2017 22: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/1a7e460c505a0e2c74b249d10c1c0bc4 to your computer and use it in GitHub Desktop.
Save KTruong008/1a7e460c505a0e2c74b249d10c1c0bc4 to your computer and use it in GitHub Desktop.
import React from 'react';
import { Field } from 'redux-form';
import Text from '../components/text';
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="firstName"
label="First Named"
component={Text}
/>
<button
type="submit"
className="link br2 bg-blue white dim pa3 f6 sans-serif b--blue ba"
>
Submit
</button>
</form>
</div>
);
}
export default FormComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment