Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created May 3, 2020 12:00
Show Gist options
  • Save bitfishxyz/487194e27a65244a5bd82d5593621820 to your computer and use it in GitHub Desktop.
Save bitfishxyz/487194e27a65244a5bd82d5593621820 to your computer and use it in GitHub Desktop.
import React from 'react';
const yellowHOC = WrapperComponent => {
return class extends React.Component {
render() {
<div style={{ backgroundColor: 'yellow' }}>
<WrapperComponent {...this.props} />
</div>;
}
};
};
export default yellowHOC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment