Answer the question
In order to leave comments, you need to log in
How to make nodejs convert scss to css-modules on server side?
There is such a simple component
import React, {Component} from 'react';
import {observer} from 'mobx-react';
import style from './style.scss';
@observer
export default class App extends Component {
render() {
return (
<div>
<h1 className={style.title}>Hello from App Component!</h1>
{this.props.children}
</div>
);
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question