Skip to content

Instantly share code, notes, and snippets.

@diego3g
Last active April 16, 2018 19:21
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 diego3g/bfc8de94adbfd85b163bf9cbeb4f4434 to your computer and use it in GitHub Desktop.
Save diego3g/bfc8de94adbfd85b163bf9cbeb4f4434 to your computer and use it in GitHub Desktop.
function ThemedButton(props) {
return (
<ThemeContext.Consumer>
{theme => (
<a style={{ backgroundColor: theme === 'dark' ? '#333' : '#CCC' }}>
Meu botão
</a>
)}
</ThemeContext.Consumer>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment