module.exports 无法设置未定义的 属性

module.exports Cannot set property of undefined

我正在尝试将所有 React 组件移动到单独的 repo,以便可以共享它们。我收到上述错误

ui-react/index.js

'use strict';

import Button from "./components/Button/Button";

module.exports.Button = Button;

文件B

import  {Button} from  'ui-react';

当我这样做时,我收到一条错误消息。

'ui-react' does not contain an export named 'Button' 

PS:在 ui-react 的 package.json 中,我已将 main 设置为 index.js,并且我还尝试导入 "ui-react/index"

不用写module.exports。你可以写

export { Button };