Reputation: 233
What I want to do is:
export * as counterActions from './counter';
and the error says:
Support for experimental syntax 'exportNameSpaceFrom' isn't currently enabled. Add @babel/plugin-proposal-export-namespace-from to the plugins section of your Babel config to enable transformation.
I added the plugin but still doesn't work.
Upvotes: 1
Views: 463
Reputation: 1526
Try this:
import * as counterActions from './counter';
export default counterActions;
Upvotes: 2