React routing : URL gets changed but content from component didn't load

43 Views Asked by At

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

1

There are 1 best solutions below

1
On BEST ANSWER

src/app/index.js

<Route exact path="/" Component={Root} />

should be

<Route exact path="/" component={Root} />