所以我有这些文件和文件夹。
App.js
modules/
user/
index.js
list.js
在 list.js 我有 export default (props) => (...)
在 index.js 我有 export UserList from './list';
在 App.js 我有 import { UserList } from './modules/user';
有什么问题吗?因为我得到
./src/modules/user/index.js
Syntax error: Unexpected token, expected { (1:7)
> 1 | export UserList from './list';
但我不明白这里有什么问题?帮助!
编辑:这是我的 list.js 文件的更多详细信息,但我认为它没有区别,因为错误在 index.js 中
import React from 'react';
// more import
export default (props) => (
<List {...props}>
...
</List>
);