Skip to content

Instantly share code, notes, and snippets.

@KTruong008
Created September 17, 2017 22:05
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/dc3b022161bf1ef9eabcd2edc6f0d5ee to your computer and use it in GitHub Desktop.
Save KTruong008/dc3b022161bf1ef9eabcd2edc6f0d5ee to your computer and use it in GitHub Desktop.
import React from 'react';
export const Text = ({ label, input }) => {
console.log('inputStuff: ', input);
return (
<div>
<div>
{label}
</div>
<div>
<input {...input} placeholder={label} type="text" />
</div>
</div>
);
}
export default Text;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment