I\'m currently using CSS Modules with React for my styling. So each of my components is importing in it\'s component specific css file, like so:
import React
This can be done by simply adding:
require('./App.css');
(thanks @elmeister who correctly answered this question.)