Fix reducer export/import
This is the same change as for the actions, using export default
in the reducers index and import reducers
instead of import * as reducers
when importing the reducers index.
It does seem that exporting an unnamed object without default
and importing it with import *
is actually supposed to be possible, but for some reason it's not working in this setup…