Update readme.md

This commit is contained in:
Kai Moseley 2017-05-07 18:52:47 +01:00 committed by GitHub
parent e779551291
commit 231fd8bd53
1 changed files with 59 additions and 59 deletions

View File

@ -158,11 +158,11 @@ This produces the following object:
Above we saw how combined reducers would operate, here's a quick example of what a reducer nested inside another reducer would look like:
```
const exampleStoreChunk2 = buildStoreChunk('example2', {
const exampleStoreChunk2 = buildStoreChunk('example2', {
screen: Types.reducer({
someNestedReducer: Types.reducer(Types.string()),
}),
});
});
```