Skip to content

Instantly share code, notes, and snippets.

@codeocelot
Last active April 29, 2017 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeocelot/1954c2837d74444df4ff134c68ff2128 to your computer and use it in GitHub Desktop.
Save codeocelot/1954c2837d74444df4ff134c68ff2128 to your computer and use it in GitHub Desktop.
Higher Order Component to uppercase text
const UppercaseHoC = (WrappedComponent) => (props) =>
<div style="text-transform: uppercase;">
<WrappedComponent {...props}/>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment