我正在使用Next.js和next-routes库为Shopify创建一个应用程序。我想使用一个容器组件来包装一些路由,但是我在任何文档中都找不到如何做的方法。
我的页面是这样组织的:
container.js
container/page1.js
container/page2.js
我的路线是:
module.exports = routes()
.add('container/page1', '/container/page1')
.add('container/page2', '/container/page2/:param')
一切正常,但是我不知道如何像使用React-Router一样使用{this.props.children}
使页面路由通过容器