Functions are not valid as a React child. This may happen if you return a Component instead of
报错信息:Functions are not valid as a React child. This may happen if you return a Component instead offrom render. Or maybe you meant to call this function rather than return it.使用一个{} 去渲染一个组件 就会报这样一个错误例
·
报错信息:Functions are not valid as a React child. This may happen if you return a Component instead of from render. Or maybe you meant to call this function rather than return it.
使用一个{} 去渲染一个组件 就会报这样一个错误
例如 Nav
是一个组件
使用时不小心写成了 {Nav}
所以报上面的错误
应该将 {Nav}
改为 <Nav/>
更多推荐
已为社区贡献45条内容
所有评论(0)