How can use imports in ReactJS like this:
import styles from './Login.scss';
Instead of this:
import styles from './Login.module.scss';
The problem is, when I'm importing with the first syntax, no styles are imported.
(Edit: I used Create React App if that matters)
(Edit 2: Seems like I have to follow this and use the solution from here.)