Skip to content

Instantly share code, notes, and snippets.

@esr360
Created August 17, 2019 22:48
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 esr360/985e2e214f7c8f1a2b3e89917734a93c to your computer and use it in GitHub Desktop.
Save esr360/985e2e214f7c8f1a2b3e89917734a93c to your computer and use it in GitHub Desktop.
const styles = ({ props, state, context }) => ({
display: 'block',
border: '1px solid',
heading: ({ props, state }) => ({
fontWeight: props.strong && 'bold',
color: state.isHovered ? 'blue' : 'red'
}),
content: {
padding: '1em'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment