Created
March 14, 2017 15:51
-
-
Save iddan/7c18a5d857d035d662d05d995743bfb7 to your computer and use it in GitHub Desktop.
css-modules-styled-components
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
import { Label } from './label.scss'; | |
export default function Form({ fields }) { | |
return fields.map(field => <div> | |
<Label color="red" highlighted>{field}</Label> | |
<input type="text" /> | |
</div>) | |
} |
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
.Label { | |
font-size: 18px; | |
&-highlighted { | |
background: yellow; | |
} | |
&-color-red { | |
color: red; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Advantages