以下内容为我提供了unexpected identifier
错误
/* @flow */
import A from './A'
const B = A
export default A
export B
CommonJS模块有效:
module.exports = { A, B }
我更愿意使用export A from './A'
表格(仍在提案中)。
如果没有Flow抱怨,我怎么能做这些事?
我基本上是在一个文件夹中创建一个index.js文件,其中包含组件以便在其他地方轻松导入。使用Flow,您将在尝试导入导出中不可用的组件时出错,这对我来说很重要,因为在开发过程中很容易忘记添加新组件。