We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Angular module name is no more exported as default.
So this code no more working
import NgRedux from 'ng-redux'; angular.module('app', [NgRedux]);
Now we should do that, but typing doesn't allow it:
import * as NgRedux from 'ng-redux'; angular.module('app', [NgRedux]);