Gatsby-将组件放入组件内部以制作模板

时间:2019-02-17 20:12:22

标签: reactjs gatsby

是否存在将组件放置在组件内部的好方法?

我想要这样的东西:

<TemplateA> 
  <h1>Main content</h1>
</TemplateA>

但是templateA将被定义为这样的东西:

<Primarycontainer> 
  <Primarynavigation />
  <Primarycontent> 
    <Leftcontentcolumn> 
      {children}
    </Leftcontentcolumn>
    <Rightsidebar />
  </Primarycontent>
  <Footer />
</Primarycontainer>

我无法将各种组件导入到另一个组件中,就像将它们导入到页面文件中一样。表示我没有组件文件的组件,也没有嵌套的组件文件。

有什么建议吗?

谢谢

0 个答案:

没有答案