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

51 lines
890 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`styled-components.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
<style jsx>{\`
p {
color: red;
}
\`}</style>;
<style jsx>{tpl\`
p {
color: red;
}
\`}</style>;
<style jsx>
{\`p {
color: red;
}
\`}
</style>;
=====================================output=====================================
<style jsx>{\`
p {
color: red;
}
\`}</style>;
<style jsx>{tpl\`
p {
color: red;
}
\`}</style>;
<style jsx>
{\`
p {
color: red;
}
\`}
</style>;
================================================================================
`;