Skip to content

Instantly share code, notes, and snippets.

@Temzasse
Last active April 27, 2017 13:47
Show Gist options
  • Save Temzasse/413ea68ccc84a3c74285082a1150b7f2 to your computer and use it in GitHub Desktop.
Save Temzasse/413ea68ccc84a3c74285082a1150b7f2 to your computer and use it in GitHub Desktop.
Example for withRipple HOC
const RippleBlock = withRipple(styled.div`
width: 100px;
height: 100px;
background-color: ${props => props.bg || '#eee'};
`);
// or
const Block = styled.div`
width: 100px;
height: 100px;
background-color: ${props => props.bg || '#eee'};
`;
const RippleBlock = withRipple(Block);
...
// In render function
<RippleBlock bg='tomato' />
<RippleBlock bg='blue' />
<RippleBlock bg='mediumseagreen' />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment