Skip to content

Instantly share code, notes, and snippets.

@basti1253
Created April 17, 2016 09:07
Show Gist options
  • Select an option

  • Save basti1253/f2e716bf3325ca39fed3a653f532b9c3 to your computer and use it in GitHub Desktop.

Select an option

Save basti1253/f2e716bf3325ca39fed3a653f532b9c3 to your computer and use it in GitHub Desktop.
// 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