rsnext/packages/next/build/swc/tests/fixture/styled-jsx/tpl-escape-2/input.js
2021-09-16 15:08:42 +02:00

17 lines
No EOL
300 B
JavaScript

export default function Home({ fontFamily }) {
return (
<div>
<style jsx global>
{`
body {
font-family: ${fontFamily};
}
code:before,
code:after {
content: '\`';
}
`}
</style>
</div>
)
}