rsnext/packages/next-swc/crates/styled_jsx/tests/fixture/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>
)