From a565c25171e26c416ed333badda0e377de2bb8ff Mon Sep 17 00:00:00 2001 From: Erik van den Brink Date: Wed, 28 Jun 2017 18:22:37 +0200 Subject: [PATCH] Fix broken links in FAQ + 1 typo --- README.md | 2 +- docs/react-native.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69a920e2..9d6daedc 100644 --- a/README.md +++ b/README.md @@ -302,7 +302,7 @@ It essentially generates a fake `history` object based on the `request.path` *ex Does this work with React Native? > Yes, just like server side rendering, you can use the `history` package's `createMemoryHistory()` function. It's perfect for React Native's `Linking` API and push notifications in general. In fact, if you built your React Native app already and are just starting to deal with deep-linking and push notifications, **Redux-First Router** -is perfectly suited to be tacked on in final stages with very few changes. We also have first-class support for [**React Navigation**](./docs/react-navigation), which really is the crown jewel here and where we do most our work these days. It does some amazing things. [Check it out!](./docs/react-navigation) +is perfectly suited to be tacked on in final stages with very few changes. We also have first-class support for [**React Navigation**](./docs/react-native.md#first-class-react-navigation-support), which really is the crown jewel here and where we do most our work these days. It does some amazing things. [Check it out!](./docs/react-native.md#first-class-react-navigation-support) Ok, but there's gotta be a catch--what changes should I expect to make if I start using **Redux-First Router**? > Primarily it will force you to consolidate the actions you use in your reducers. Whereas before you might have had diff --git a/docs/react-native.md b/docs/react-native.md index b038fd25..7e874bf9 100644 --- a/docs/react-native.md +++ b/docs/react-native.md @@ -309,7 +309,7 @@ So by using *Redux First Router* as your **"master routing controller"**, you're This will become clearer once its documentation becomes as clear as the rest of the docs. If you want to see it in action now, [check out the boilerplate I'm working on](https://github.com/faceyspacey/redux-first-router-navigation-boilerplate). It's a mess as it has the remains of everything I've tried, but if this matches your current focus, you'll be more than intrigued. -## About the COde +## About the Code The way *Redux-First Router Navigation* works is quite interesting so you may want to check out its code: