Created
August 17, 2016 17:08
-
-
Save gitsebs/0c4a1e1dbf227b117652a04948daa000 to your computer and use it in GitHub Desktop.
This file contains 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 file # | |
.className { | |
color: $color; | |
margin: 50px; | |
} | |
# React component # | |
import styles from './styles.scss' | |
const Component = props => { | |
const class = styles.className({ | |
color: 'blue' | |
}) | |
return <div className={class}></div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment