rsnext/packages/next/build/swc/tests/fixture/styled-jsx/tpl-placeholder-5-values-of-multiple-properties/input.js

16 lines
301 B
JavaScript
Raw Normal View History

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