Steps To Reproduce
- Installation this plugin
- Installation vscode-styled-component
The current behavior
import { css } from '@emotion/core';
// error: } expectedcss(css-rcurlyexpected)
// and syntax highlighting is broken
// it should conflict with styled-jsx's `css.resolve` and `css.global`
const className = css`
text-align: center;
`;
const Button = () => {
return (
<button
// same problem as above
css={css`
text-align: center;
`}
/>
);
};
Hope this conflict can be resolved π