Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created November 11, 2017 14:08
Show Gist options
  • Save indreklasn/c90a6455e9dd7dce7b579b06d2e61413 to your computer and use it in GitHub Desktop.
Save indreklasn/c90a6455e9dd7dce7b579b06d2e61413 to your computer and use it in GitHub Desktop.
JSS React
import React from 'react'
import injectSheet from 'react-jss'
const styles = {
wrapper: {
background: 'black'
},
title: {
color: 'white'
}
}
const App = ({classes}) => (
<div className={classes.wrapper}>
<h1 className={classes.title}>
Hello JSS-React!
</h1>
</div>
)
export default injectSheet(styles)(App)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment