react-css-modules-intellij-plugin
react-css-modules-intellij-plugin copied to clipboard
Feature: support for unnamed imports
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;
}