Skip to content

Instantly share code, notes, and snippets.

@alvincrespo
Created October 25, 2017 13:29
Show Gist options
  • Save alvincrespo/d7d8ce82138763a1c14a25f5eb77634b to your computer and use it in GitHub Desktop.
Save alvincrespo/d7d8ce82138763a1c14a25f5eb77634b to your computer and use it in GitHub Desktop.
Functions as children component composition
const PasswordField = (props) => {
let children = {
label: <label>Password</label>,
input: <input type="password" />
};
if (props.children) {
return props.children(children);
}
return (
<Field>
{children.label}
{children.input}
</Field>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment