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

68 lines
1.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`styled-components.js 1`] = `
const ListItem = styled.li\`\`;
const ListItem = styled.li\` \`;
const Dropdown = styled.div\`position: relative;\`
const Button = styled.button\`
color: palevioletred ;
font-size : 1em ;
\`;
const TomatoButton = Button.extend\`
color : tomato ;
border-color : tomato
;
\`;
styled(ExistingComponent)\`
color : papayawhip ; background-color: firebrick\`;
styled.button.attr({})\`
border : rebeccapurple\`;
styled(ExistingComponent).attr({})\`
border : rebeccapurple\`;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
const ListItem = styled.li\`\`;
const ListItem = styled.li\`\`;
const Dropdown = styled.div\`
position: relative;
\`;
const Button = styled.button\`
color: palevioletred;
font-size: 1em;
\`;
const TomatoButton = Button.extend\`
color: tomato;
border-color: tomato;
\`;
styled(ExistingComponent)\`
color: papayawhip;
background-color: firebrick;
\`;
styled.button.attr({})\`
border: rebeccapurple;
\`;
styled(ExistingComponent).attr({})\`
border: rebeccapurple;
\`;
`;