Is there any way to import all _*.scss files to main App.scss file in React project? As I have separate folder for each component, I want to avoid typing
@import './components/UI/button';
@import './components/UI/menu';
@import './components/Forms/textInput';
What would be perfect is a working code like this:
@import './components/*';
I'm aware of order problem, I doesn't affect my css, files can be imported randomly.