Skip to content

Instantly share code, notes, and snippets.

@joeporpeglia
Last active June 30, 2017 16:25
Show Gist options
  • Select an option

  • Save joeporpeglia/aab0f72ed26959a95575c6a246d89049 to your computer and use it in GitHub Desktop.

Select an option

Save joeporpeglia/aab0f72ed26959a95575c6a246d89049 to your computer and use it in GitHub Desktop.
Component Reusability
const withDropdownHandlers = WrappedComponent => {
return props => (
<WrappedComponent
{...props}
onExpand={...}
onCollapse={...}
onChange={...}
/>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment