Skip to content

Instantly share code, notes, and snippets.

@alvincrespo
Created October 25, 2017 13:33
Show Gist options
  • Save alvincrespo/1b0ebb83590b918261cd150796ee029b to your computer and use it in GitHub Desktop.
Save alvincrespo/1b0ebb83590b918261cd150796ee029b to your computer and use it in GitHub Desktop.
Instantiating PasswordField component
const App = () => {
return (
<PasswordField>
{(props) => (
<Field>
{props.label}
{props.input}
</Field>
)}
</PasswordField>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment