在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.
显然,我没有提供这些道具,所以我认为它可能与依赖项的版本有关。
我该如何解决?