Support for css modules in jsx/tsx
See original GitHub issueAbbreviation | Current Behavior | Desired Behavior |
---|---|---|
.foo |
<div className="foo"></div> |
<div className={styles.foo}></div> |
Sorry for reopening this issue, but #533 was closed by the author and I didn’t want it to quietly disappear. I’ve wanted this for years and haven’t found a clean solution yet. I took a look at the emmet source code and I can’t think of a clean way to implement this myself.
@sergeche you mentioned you would try to implement this in an upcoming emmet version - did you manage to do it?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:7
- Comments:30 (10 by maintainers)
Top Results From Across the Web
How to import CSS modules with Typescript, React and ...
Create css file component.css · Include it in component import * as css from './component.css' · Run webpack · Typescript compiler will try...
Read more >typescript-plugin-css-modules - npm
A TypeScript language service plugin for CSS Modules. ... For Create React App users, this plugin will work without additional configuration ...
Read more >How to use CSS Modules with TypeScript and webpack
Using CSS Modules with TypeScript is not as obvious as with JavaScript. There are several ways to do that.
Read more >Increasing the Value of CSS Modules with Typescript
The easiest way to try out CSS Modules on a real application is to create a new one. Create React App has a...
Read more >Using CSS modules in React - Bootcamp
To import a CSS Module into the corresponding component, import the css modules stylesheet as styles or [name]Styles : In JSX, use the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
How about
div..foo
? It would be super fast to type.Excuse me, is this problem being handled?
BTW, is there any way to uses
styleName
instead ofclassName
? ThestyleName
is from https://github.com/gajus/babel-plugin-react-css-modules..foo
<div className="foo"></div>
<div styleName="foo"></div>