Skip to content

Instantly share code, notes, and snippets.

@brunolemos
Last active December 10, 2017 17:37
Show Gist options
  • Save brunolemos/d53a58b10ffd5a934468cb087051aa2b to your computer and use it in GitHub Desktop.
Save brunolemos/d53a58b10ffd5a934468cb087051aa2b to your computer and use it in GitHub Desktop.
HoC with custom prop name
@withTest('myNewPropName')
export default class App extends PureComponent...
export default (propName = 'myDefaultProp') => Component => props => (
<Component {...props} {...{ [propName]: 123 }} />
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment