prettier/tests/jsx_template/styled-components.js

19 lines
168 B
JavaScript

<style jsx>{`
p {
color: red;
}
`}</style>;
<style jsx>{tpl`
p {
color: red;
}
`}</style>;
<style jsx>
{`p {
color: red;
}
`}
</style>;