1
votes

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.

1

1 Answers

2
votes

Try this:

import * as counterActions from './counter';
export default counterActions;