Skip to content

Instantly share code, notes, and snippets.

@dfee

dfee/block4.ts Secret

Created January 23, 2019 21:46
Show Gist options
  • Save dfee/bde8bf086f1977922949b2875d3e7f24 to your computer and use it in GitHub Desktop.
Save dfee/bde8bf086f1977922949b2875d3e7f24 to your computer and use it in GitHub Desktop.
const MyRRButtonLink = (props: LinkProps & HelpersProps) => {
<Theme.Consumer>
{(themeCtx) => {
const cleanedProps = themeCtx.value(props);
cleanedProps.className = `button ${cleanedProps.className}`;
<Link {...props} />;
}}
</Theme.Consumer>
}
<MyRRButtonLink>RR Link</MyButtonRRLink>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment