Skip to content

Instantly share code, notes, and snippets.

@mitchgollub
Created September 28, 2019 02:11
Show Gist options
  • Save mitchgollub/b189ad2d13a396c9452d6661bb2b85dd to your computer and use it in GitHub Desktop.
Save mitchgollub/b189ad2d13a396c9452d6661bb2b85dd to your computer and use it in GitHub Desktop.
React: High Order Components 2
const withClassName = Component => props => (
<Component {...props} className="my-class" />
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment