Skip to content

react createClass error

Published: at 12:00 AM


最近在开发react项目的时候,遇到了一个小问题,折腾了好几个小时,好尴尬,当在一个组件中引入另一个组件的时候,报如下的错误。
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).
上网搜了很多教程都没有能解决问题的,最后发现是因为引入的那个组件,需要export出来,因为我是用一个文件统一把组件export出来,就给忘了,所以算是吃一堑长一智吧。