Skip to content

Instantly share code, notes, and snippets.

@esr360
Last active August 17, 2019 21:52
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/edbf4681c32a6bed26312a263c5a7f71 to your computer and use it in GitHub Desktop.
Save esr360/edbf4681c32a6bed26312a263c5a7f71 to your computer and use it in GitHub Desktop.
const styles = ({ props, state, context }) => ({
display: 'block',
fontSize: props.large ? '18px' : '12px',
...(context.grid && {
display: 'inline-block',
border: '1px solid'
}),
heading: {
fontWeight: 'bold',
color: 'red'
},
content: {
padding: '1em',
display: state.isActive ? 'block' : 'none'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment