rsnext/packages/next/build/swc/tests/fixture/styled-jsx/tpl-placeholder-2-as-part-of-value/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

21 lines
No EOL
427 B
JavaScript

export default class {
render() {
return (
<div>
<p>test</p>
<style jsx>{`
:global(.a):hover .b {
a: ${a[b]}px !important;
b: translate3d(
0,
${-1 * (c || 0)}px,
-${d}px
)
scale(1) !important;
}
`}</style>
</div>
)
}
}