Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~99 People Reached
Favorite Forums
Favorite Tags
Member Avatar for gajus

We can all agree that [CSS Modules](https://github.com/css-modules/css-modules) are awesome. However, their integration to React does not feel natural: import React from 'react'; import styles from './car.css'; export default class Car extends React.Component { render () { return <div className={styles.car}> <div className={styles.frontDoor}></div> <div className={styles.backDoor}></div> </div>; } } What if we could …

0
87