I have an issue while routing path of reactjs application.I need two exact paths
1. path = /user/
2. path = /user/setting
When i call the second path its shows a merged page of both components
<Route path='/user/:param1' component={routeProps => <MyTab {...routeProps} remotes={remotes} />}/>
<Route path='/(user/settings)/:param1' component={UserSettings}/>