我正在尝试为Form创建自己的React Wrapper
并将其发布到 npm 。
我用过create-react-library
。一切都很好,直到我安装了antd
。
import React, { Component } from "react";
import { Button } from "antd";
import PropTypes from "prop-types";
class WrappedForm extends Component {
static propTypes = {
text: PropTypes.string,
color: PropTypes.string
};
render() {
const { text, color } = this.props;
return (
<React.Fragment>
<Button>Heloo</Button>
</React.Fragment>
);
}
}
export default WrappedForm;
导入ant design
的组件后,出现错误。
Error: Unexpected token
node_modules\antd\package.json (2:9)
1: {
2: "_from": "antd@^3.26.0",
^
3: "_id": "antd@3.26.0",
4: "_inBundle": false,
感谢您的帮助。
预先感谢!