Why won't my nested React components render?

后端 未结 5 595
花落未央
花落未央 2020-12-15 17:44

I\'m having a problem with my React component. The nested children of my component ControlPanel don\'t seem to be rendering. Here is my code:

cl         


        
5条回答
  •  余生分开走
    2020-12-15 18:39

    You need to render the children in ControlPanel

    const ControlPanel = ({ children }) => {
        return (
          
    {children}
    ); }

提交回复
热议问题