1
React-router似乎使用JSX進行配置。React路由器配置
似乎配置也可以在JavaScript中直接完成(簡單地?)。
他們使用JSX是因爲它更清晰還是還有其他一些好處?
例子:
ReactDOM.render(
<Router history={hashHistory}>
<Route path="/" component={Layout}>
<IndexRoute component={Featured}></IndexRoute>
...
</Route>
</Router>
);