prettier/tests/jsx_template/__snapshots__/jsfmt.spec.js.snap

43 lines
515 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`styled-components.js 1`] = `
<style jsx>{\`
p {
color: red;
}
\`}</style>;
<style jsx>{tpl\`
p {
color: red;
}
\`}</style>;
<style jsx>
{\`p {
color: red;
}
\`}
</style>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<style jsx>{\`
p {
color: red;
}
\`}</style>;
<style jsx>{tpl\`
p {
color: red;
}
\`}</style>;
<style jsx>
{\`p {
color: red;
}
\`}
</style>;
`;