rsnext/test/integration/css-fixtures/with-styled-jsx/pages/index.js

13 lines
226 B
JavaScript
Raw Normal View History

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