当前正在使用rails-on-rails构建一些东西,但是我需要弄清楚如何将子组件赋予总体组件。因此,例如,我有一个名为BasePage
的总体组件,在该组件上渲染了几个子组件。我该如何在Rails上做同样的事情?
我尝试过不关闭rails中的react_component,而仅将其关闭在其他子组件之后。
<%= react_component("BasePage", footer: footer) %>
<BasePage footer={this.props.footer}>
<Hero title={title} image={headerImage} />
<Video />
<ImageGrid />
<ContactPersonCase person={this.props.contactPerson} />
</BasePage>