0

我正在尝试在基本反应应用程序中实现反应路由。

我已经实现了它,但不知何故它不能正常工作。

URL 已更改,但组件中的内容未加载。

这是代码路径:https ://github.com/AshuDeshpande/ReactSampleApplication

4

1 回答 1

0

src/app/index.js

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

应该

<Route exact path="/" component={Root} />
于 2018-09-14T09:04:29.103 回答