标签: react-router-v4
如何将这两种路线合为一体?
react页面是一个单独的模块,具有逻辑以向他们显示一个或另一个的内容,但我宁愿为两者提供一个衬里
<Router> <Switch> <Route path="/signup" component={Signup} /> <Route path="/signup/:key" component={Signup} /> </Switch> </Router>