Skip to content

Commit 67d73bb

Browse files
committed
fix broken links
1 parent ee3703f commit 67d73bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/redux-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Some folks like to have their navigation state stored in the same place as the r
1010

1111
1. To handle your app's navigation state in Redux, you can pass your own `navigation` prop to a navigator.
1212

13-
2. Once you pass your own navigation prop to the navigator, the default [`navigation`](https://reactnavigation.org/docs/navigators/navigation-prop) prop gets destroyed. You must construct your own `navigation` prop with [`state`](https://reactnavigation.org/docs/navigators/navigation-prop#state-the-screen's-current-stateroute), [`dispatch`](https://reactnavigation.org/docs/navigators/navigation-prop#dispatch-send-an-action-to-the-router), and `addListener` properties.
13+
2. Once you pass your own navigation prop to the navigator, the default [`navigation`](https://reactnavigation.org/docs/navigation-prop) prop gets destroyed. You must construct your own `navigation` prop with [`state`](https://reactnavigation.org/docs/navigation-prop#state-the-screen-s-current-state-route), [`dispatch`](https://reactnavigation.org/docs/navigation-prop#dispatch-send-an-action-to-the-router), and `addListener` properties.
1414

1515
3. The `state` will be fed from the reducer assigned to handle navigation state and the `dispatch` will be Redux's default `dispatch`. Thus you will be able to dispatch normal redux actions using `this.props.navigation.dispatch(ACTION)`, reducer will update the navigation state on the basis of dispatched action, the new navigation state will then be passed to the navigator.
1616

0 commit comments

Comments
 (0)