rsnext/packages/next/build/swc/tests/fixture/styled-jsx/mixed-global-scoped/input.js
Maia Teegarden 4a2d5a1b49
Add/styled jsx swc (#29005)
Co-authored-by: Tim Neutkens <tim@timneutkens.nl>
Co-authored-by: Tim Neutkens <timneutkens@me.com>
2021-09-15 09:24:31 +02:00

9 lines
228 B
JavaScript

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>
)