rsnext/packages/next/build/swc/tests/fixture/styled-jsx/non-styled-jsx-style/input.js

8 lines
182 B
JavaScript
Raw Normal View History

export default () => (
<div>
<p>woot</p>
<style dangerouslySetInnerHTML={{ __html: `body { margin: 0; }` }}></style>
<style jsx>{'p { color: red }'}</style>
</div>
)