rsnext/packages/next/build/swc/tests/fixture/styled-jsx/tpl-placeholder-5-values-of-multiple-properties/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

16 lines
No EOL
301 B
JavaScript

export default class {
render() {
return (
<div>
<p>test</p>
<style jsx>{`
.item {
max-width: ${a ? '100%' : '200px'};
padding: ${b ? '0' : '8px 20px'};
}
`}</style>
</div>
)
}
}