Answers for "how to have scss in react app"

5

install scss in react js

$ npm install node-sass --save
$ # or
$ yarn add node-sass
Posted by: Guest on December-22-2020
0

React Sass

$myColor: red;

h1 {
  color: $myColor;
}
Posted by: Guest on February-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language