0

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 Answers1

0

src/app/index.js

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

should be

<Route exact path="/" component={Root} />
Nisfan
  • 750
  • 6
  • 10