Using SCSS Files with React

Simple instruction on how to install SCSS with React.

August 05, 2022 Code

Using SCSS is simple as install a dependency and importing the .scss file:

yarn add node-sass

Once installing the dependency, import the scss file and start using!

import './sample.scss';

Invely's