Dexter Naru
Dexter Naru

Reputation: 233

cannot export (currently unable) in React Native

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

Answers (1)

Daniel Gabor
Daniel Gabor

Reputation: 1526

Try this:

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

Upvotes: 2

Related Questions