本文主要是介绍React.createElement: type should not be null, undefined, boolean, or number,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原因是你通过
import {xxx} from 'xxx'
这个方法引入了一个export default的对象作为react组件。
对于export default的对象,你应该直接引入,通过以下方法。
import xxx from 'xxx'
有可能有其它情况,总的来说是你的组件发生了错误,一般错误是引入时发生的。
参考:
https://codereviewvideos.com/blog/warning-react-createelement/
这篇关于React.createElement: type should not be null, undefined, boolean, or number的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!