Skip to content

Instantly share code, notes, and snippets.

@ojame
Created October 19, 2015 23:09
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 ojame/fea4fc6b40df9a2a1d50 to your computer and use it in GitHub Desktop.
Save ojame/fea4fc6b40df9a2a1d50 to your computer and use it in GitHub Desktop.
css:
.kitchen {
color: red;
text-decoration: none;
}
.kitchen :global(.blender) {
color: black;
font-weight: bold;
}
js:
export default class Kitchen extends React.Component {
render() {
return (
<div className={styles.kitchen}>
Jamie Oliver
<div className="blender">
Blender
</div>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment