Skip to content

Commit 36e3c3e

Browse files
authored
Merge pull request reduxjs#2538 from ariabov/patch-1
Add missing SET_VISIBILITY_FILTER import
2 parents a503f14 + 9df3c15 commit 36e3c3e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/basics/Reducers.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,12 @@ Note that:
118118
We have two more actions to handle! Just like we did with `SET_VISIBILITY_FILTER`, we'll import the `ADD_TODO` and `TOGGLE_TODO` actions and then extend our reducer to handle `ADD_TODO`.
119119

120120
```js
121-
import { VisibilityFilters, ADD_TODO, TOGGLE_TODO } from './actions'
121+
import {
122+
ADD_TODO,
123+
TOGGLE_TODO,
124+
SET_VISIBILITY_FILTER,
125+
VisibilityFilters
126+
} from './actions'
122127

123128
...
124129

0 commit comments

Comments
 (0)