Skip to content

Instantly share code, notes, and snippets.

@hpierre74
Created August 8, 2018 23:17
Show Gist options
  • Save hpierre74/a9f76cda8877a3ee03a74d86b0eb5fa3 to your computer and use it in GitHub Desktop.
Save hpierre74/a9f76cda8877a3ee03a74d86b0eb5fa3 to your computer and use it in GitHub Desktop.
import withAnim from './withAnim.hoc.js';
const AnyComponent = () => <p>I am a simple Component</p>;
const AnimatedComponent = withAnim(AnyComponent);
const AnyWrapper = () => (
<div>
<AnimatedComponent animation='slideInDown' />
</div>
);
export default AnyWrapper;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment