Skip to content

Instantly share code, notes, and snippets.

@tyv
Created July 7, 2016 20:26
Show Gist options
  • Save tyv/c23bd05b1ad372621962cb53b98baa22 to your computer and use it in GitHub Desktop.
Save tyv/c23bd05b1ad372621962cb53b98baa22 to your computer and use it in GitHub Desktop.
function B(props) {
//...
}
B.propTypes = {
//...
}
function A(props) {
return (
<B {...pick(props, Object.keys(B.propTypes))} />
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment