react-css-modules-intellij-plugin icon indicating copy to clipboard operation
react-css-modules-intellij-plugin copied to clipboard

Feature: support for unnamed imports

Open saravanabalagi opened this issue 6 years ago • 0 comments
trafficstars

Currently syntax highlighting happens only if I require a .css file.

import './welcome.scss';                            // does NOT work
import styles from './welcome.scss';                // works
require './welcome.scss';                           // works

<View styleName="container">
.container {
  flex: 1;
  justify-content: center;
  align-items: center;
  background-color: #333;
}

saravanabalagi avatar Oct 11 '19 23:10 saravanabalagi