Warning: Failed prop type: Invalid prop `children` supplied to `Container`.

版权声明:心灵泽尘 https://blog.csdn.net/github_38313789/article/details/83309083

Container 组件

const Container = ({ classes, children }) => (
  <Paper elevation={4} className={classes.root}>
    {children}
  </Paper>
)

错误JSX 代码

{
    (createdTopics && createdTopics.length > 0) && (<List><TopciListItem /></List>)
}

正确代码

{
  (createdTopics && createdTopics.length > 0) 
  ? (<List><TopciListItem /></List>)
  : null
}

猜你喜欢

转载自blog.csdn.net/github_38313789/article/details/83309083