import React from 'react' import injectSheet from 'react-jss' const styles = { container: { marginTop: 100, textAlign: 'center' }, header: { fontSize: 24, lineHeight: 1.25 } } function Index (props) { return (

Example on how to use react-jss with Next.js

) } export default injectSheet(styles)(Index)