rsnext/packages/next-swc/crates/styled_jsx/tests/fixture/mixed-global-scoped/input.js

10 lines
228 B
JavaScript
Raw Normal View History

const Test = () => <style global jsx>{'p { color: red }'}</style>
export default () => (
<div>
<p>test</p>
<style jsx global>{`body { background: red }`}</style>
<style jsx>{'p { color: red }'}</style>
</div>
)