使用反应按钮会警告未知道具

时间:2018-09-17 05:47:29

标签: javascript reactjs bootstrap-4 react-bootstrap

在package.json的依赖项中,我有:

"react": "15.6.1",
"react-dom": "15.6.1",
"react-button": "1.2.1"

当我只是通过

导入按钮时
import Button from 'react-button'

然后将其用作:

<Button>Hello</Button>

这给了我以下警告:

Warning: Unknown props `isReactButton`, `applyDefaultTheme`, `buttonStates`, `align`, `defaultStyle`, `defaultDisabledStyle`, `defaultLabelStyle`, `ellipsisLabelStyle`, `ellipsis`, `themes`, `theme`, `active`, `over`, `focused` on <a> tag. Remove these props from the element. 

显然,我没有提供这些道具,所以我认为它可能与依赖项的版本有关。

我该如何解决?

0 个答案:

没有答案