rsnext/test/integration/css-fixtures/with-styled-jsx/pages/index.js
JJ Kasper 01b7c576b4 Breakup CSS test suite (#9715)
* Breakup CSS test suite

* De-dupe next.config.js for css-fixtures
2019-12-11 18:39:09 -05:00

12 lines
226 B
JavaScript

export default function Home() {
return (
<>
<div className="my-text">This text should be green.</div>
<style jsx global>{`
.my-text {
color: green;
}
`}</style>
</>
)
}