Skip to content

Commit 59ed59e

Browse files
committed
fix link to render code in README
1 parent ba6c861 commit 59ed59e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ heroku config:set FOO=bar
6464

6565
## Redux Devtools
6666

67-
This project supports the awesome [Redux Devtools Extension](https://github.com/zalmoxisus/redux-devtools-extension). Install the
68-
Chrome or Firefox extension and it should just work.
67+
This project supports the awesome [Redux Devtools Extension](https://github.com/zalmoxisus/redux-devtools-extension).
68+
Install the Chrome or Firefox extension and it should just work.
6969

7070
## Pre-fetching Data for Server Side Rendering (SSR)
7171

7272
When rendering components on the server, you'll find that you may need to fetch
73-
some data before it can be rendered. The [server code](server/server.js) looks
74-
for a `fetchData` method on the container component and its child components,
75-
then executes all of them and only renders after the promises have all been
76-
resolved.
73+
some data before it can be rendered. The [component renderer](server/renderer/handler.js)
74+
looks for a `fetchData` method on the container component and its child
75+
components, then executes all of them and only renders after the promises have
76+
all been resolved.
7777

7878
```
7979
// As an ES6 class

0 commit comments

Comments
 (0)