Skip to content

Commit ce533b4

Browse files
committed
Minor style tweaks
1 parent 250b9e6 commit ce533b4

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

examples/real-world/routes.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import UserPage from './containers/UserPage'
55
import RepoPage from './containers/RepoPage'
66

77
export default (
8-
<Route path="/" component={App}>
9-
<Route path="/:login/:name"
10-
component={RepoPage} />
11-
<Route path="/:login"
12-
component={UserPage} />
13-
</Route>
8+
<Route path="/" component={App}>
9+
<Route path="/:login/:name"
10+
component={RepoPage} />
11+
<Route path="/:login"
12+
component={UserPage} />
13+
</Route>
1414
)

examples/real-world/store/configureStore.dev.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import rootReducer from '../reducers'
99

1010
const reduxRouterMiddleware = syncHistory(browserHistory)
1111
const finalCreateStore = compose(
12-
applyMiddleware(thunk, api, reduxRouterMiddleware),
13-
applyMiddleware(createLogger()),
12+
applyMiddleware(thunk, api, reduxRouterMiddleware, createLogger()),
1413
DevTools.instrument()
1514
)(createStore)
1615

0 commit comments

Comments
 (0)