react的一个坑,不知道你跳进去没有
在引入组件的时候变量名开头大写。
之前这样写import commentBox from ‘./comment/commentBox.js’
jsx代码
<commentBox author="xxx">hello </commentBox>
这样写的话app.js属性不能传递出去,页面渲染不出来。
后来改成import CommentBox from ‘./comment/commentBox.js’
jsx代码
<CommentBox author="xxx">hello </CommentBox>
页面渲染就OK啦!