I am trying to implement react routing in basic react application.
I have implemented it but somehow its not working properly.
URL gets changed but content from component didnt load.
Here is path for code : https://github.com/AshuDeshpande/ReactSampleApplication
src/app/index.js
<Route exact path="/" Component={Root} />
should be
<Route exact path="/" component={Root} />