我正在尝试执行以下操作,但它返回 null:
import { Button as styledButton } from 'component-library'
然后尝试将其呈现为:
import React, { PropTypes } from "react";
import cx from 'classNames';
import { Button as styledButton } from 'component-library';
export default class Button extends React.Component {
constructor(props){
super(props)
}
render() {
return (
<styledButton {...this.props}></styledButton>
)
}
}
原因是,我需要Button
从库中导入组件,还需要导出具有相同名称的包装器组件,但要保持导入组件的功能。import { Button } from component library
当然,如果我把它留在那个时候,我会得到一个多重声明错误。
有任何想法吗?