"import *" not working in 1.3

import {createStore, combineReducers} from 'redux';
import * as reducers from './reducers';

export default todoApp = combineReducers(reducers)

This yields an error, though from what I’ve read, import * as xyz from 'module' is valid ES6 syntax.

This will be in the next beta release.

1 Like