I'm trying to use SCSS in my React App made by Create React App. I have file called mixin.scss that I need to import in SCSS file, usually I used Ruby Compass and this just worked;
@import '_mixin';
but using node-sass
in React app from CRA it doesn't seem to be working.
What can I do for that to work?