1
我有以下途徑定義巢
const routes = (
<Router history={history}>
<Route path='/' component={Landing}>
<Route path='' component={Invitation}/>
<Route path='signin' component={Signin}/>
</Route>
<Route path='*' component={NoMatch}/>
</Router>
);
訪問根/
路由時,我想,同樣的路線上多個組件,該Invitation
組件被渲染的Landing
組件裏面,但我還沒有找到一個辦法做到這一點不使用嵌套的路徑/ URL
任何想法?