Im currently learning reactjs and Ive just added SASS to my project. However, I want to create a single file that stores all my variables and mixins globally that can then be used by any other scss file in my project. How is this possible without having to manually import the file into every scss file that i make?
My folder structure:
/src assets/ images/
components/
app/
app.js
app.scss
styles/
scss/
main.scss
_var.scss
_mixins.scss
_typography.scss
index.css
index.js