React 路由:URL 已更改但组件中的内容未加载
React routing : URL gets changed but content from component didn't load
我正在尝试在基本反应应用程序中实施反应路由。
我已经实现了,但不知为何它不能正常工作。
URL 已更改,但未加载组件中的内容。
这是代码的路径:https://github.com/AshuDeshpande/ReactSampleApplication
src/app/index.js
<Route exact path="/" Component={Root} />
应该是
<Route exact path="/" component={Root} />
我正在尝试在基本反应应用程序中实施反应路由。
我已经实现了,但不知为何它不能正常工作。
URL 已更改,但未加载组件中的内容。
这是代码的路径:https://github.com/AshuDeshpande/ReactSampleApplication
src/app/index.js
<Route exact path="/" Component={Root} />
应该是
<Route exact path="/" component={Root} />