react tutorial comment遇到的问题解决

前端之家收集整理的这篇文章主要介绍了react tutorial comment遇到的问题解决前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


问题:Warning: React.createElement: type should not be null,undefined,boolean,or number. It should be a string (for DOM elements) or a ReactClass (for composite components). Check the render method of `CommentBox`.

解决方式:

CommentBox 所包含的组件要定义到CommentBox的上面,如果不这样的话,就会报上述错误。将CommentBox放到其他组件下面,问题解决

原文链接:https://www.f2er.com/react/307094.html

猜你在找的React相关文章