标签: reactjs react-router
我们正在使用react-router
react-router
我们想将应用分为子应用 -帐户 - 查看 -产品 -评论
以此类推。
例如account应用程序没有其他应用程序的反应组件,例如checkout
account
checkout
当一个人想要从account导航到checkout时,我们就不能使用history.push,因为我们的根应用程序没有checkout的路由
history.push
如何将react app分解为多个app并仍然导航? (希望是react-router)