Open
Description
I have:
Atom: 1.25.0
css-in-js: 1.4.0 (with default settings)
I'm trying to get auto completion for JSS css-in-js code. As a workaround I've created a custom css()
function that simply returns it's argument.
Code example:
const css = input => input;
const style = css({
container: {
}
});
export default style;
What could be going wrong here?