rsnext/examples/with-react-jss/pages/index.js
Henri 98cf0a8311 [examples] Update react jss example (#6198)
This updates the react-jss example to work with the v10 alpha
2019-02-04 11:51:38 +01:00

26 lines
452 B
JavaScript

import React from 'react'
import withStyles from 'react-jss'
const styles = {
container: {
marginTop: 100,
textAlign: 'center'
},
header: {
fontSize: 24,
lineHeight: 1.25
}
}
function Index (props) {
return (
<div className={props.classes.container}>
<h1 className={props.classes.header}>
Example on how to use react-jss with Next.js
</h1>
</div>
)
}
export default withStyles(styles)(Index)