Most of this code was lifted from TJ's Frontend Boilerplate. I replaced CSS Modules with Aphrodite inline styles. I also added a build step which creates a static version of the app and inlines the Aphrodite styles into the html.
npm start
The following commands will build the app to static/
with the aphrodite styles dehydrated and included inline in the html, and run it:
npm run build
cd static/
python -m SimpleHTTPServer 3001