rsnext/packages/next/build/swc/tests/fixture/styled-jsx/tpl-placeholder-4-as-part-of-value-in-multiple/input.js
Donny/강동윤 90a33e7994
Update css parser (#29484)
Co-authored-by: timneutkens <timneutkens@users.noreply.github.com>
2021-09-29 11:09:33 +02:00

17 lines
No EOL
340 B
JavaScript

export default class {
render() {
return (
<div>
<p>test</p>
<style jsx>{`
:global(.a):hover .b {
display: inline-block;
padding: 0 ${a || 'var(--c)'};
color: ${b || 'inherit'};
}
`}</style>
</div>
)
}
}