rsnext/test/integration/react-streaming/app/components/styled-jsx.client.js
Jiachi Liu 5e2ad29309
Migrate rsc tests to app dir tests (#38158)
### Tests 
* keep node & edge for streaming
* separate rsc tests from streaming tests
* move rsc tests to app-dir, disable the broken ones for now
2022-06-29 23:12:57 +00:00

12 lines
172 B
JavaScript

export default function Comp() {
return (
<div>
<h1>Red</h1>
<style jsx>{`
h1 {
color: red;
}
`}</style>
</div>
)
}