无法在 React Native 中导出(目前无法)

cannot export (currently unable) in React Native

我想做的是:

export * as counterActions from './counter';

错误提示:

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.

我添加了插件,但还是不行。

试试这个:

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