Created
October 19, 2015 23:09
-
-
Save ojame/fea4fc6b40df9a2a1d50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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