Created
April 17, 2016 09:07
-
-
Save basti1253/f2e716bf3325ca39fed3a653f532b9c3 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
| // http://slides.com/kof/javascript-style-sheets#/26 | |
| import React from 'react' | |
| import {useSheet} from 'react-jss' | |
| @useSheet({ | |
| button: { | |
| color: 'green' | |
| } | |
| }) | |
| export default function Button(props) { | |
| const {classes} = props.sheet | |
| return <button className={classes.button}>{props.text}</button> | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment