I have a question regarding if we need to compile our scss files to css and then import the css files in our react components or can we just import scss directly in the components?
I managed to import scss directly since we use react-scripts higher than version 2(which is the starting point having the sass-loader support) but are there some drawback to importing scss directly?
Currently our configuration is that we watch for scss changes and with node-sass-chokidar we compile it to css and import the css files, but I would like to change that so we don't have a bunch of css and scss files in the same folder level.
Thank you