From 96c3171f97f9cc896abc1e7c4745d851e5560454 Mon Sep 17 00:00:00 2001 From: Nasicus Date: Thu, 15 Apr 2021 19:39:18 +0200 Subject: [PATCH 1/4] docs: add link to source in getting-started.md I had a look at the "An Existing React App" chapter today. I found the code examples great, but was missing the link to the full code. To be honest I only "stumbled" to it via another page later. I think it's helpful if it's linked directly in this chapter. --- docs/introduction/getting-started.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/introduction/getting-started.md b/docs/introduction/getting-started.md index 82fc4be36..58b381d71 100644 --- a/docs/introduction/getting-started.md +++ b/docs/introduction/getting-started.md @@ -41,6 +41,8 @@ If you are using TypeScript, the React Redux types are maintained separately in npm install @types/react-redux ``` +The code used for this example is almost the same as the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux). Additionally the same code template, but for typescript can be found [here](https://github.com/reduxjs/cra-template-redux-typescript). + ## `Provider` React Redux includes a `` component, which makes the Redux store available to the rest of your app: From 18f64b9ba219bb8524796eec3112a02743e3e988 Mon Sep 17 00:00:00 2001 From: Nasicus Date: Thu, 15 Apr 2021 19:39:57 +0200 Subject: [PATCH 2/4] Update getting-started.md --- docs/introduction/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction/getting-started.md b/docs/introduction/getting-started.md index 58b381d71..eacb33682 100644 --- a/docs/introduction/getting-started.md +++ b/docs/introduction/getting-started.md @@ -41,7 +41,7 @@ If you are using TypeScript, the React Redux types are maintained separately in npm install @types/react-redux ``` -The code used for this example is almost the same as the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux). Additionally the same code template, but for typescript can be found [here](https://github.com/reduxjs/cra-template-redux-typescript). +The code used for this example is almost the same as the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux). Additionally the same code template for typescript can be found [here](https://github.com/reduxjs/cra-template-redux-typescript). ## `Provider` From 45d20004e06783f397ef1365f4f296ad86a0e471 Mon Sep 17 00:00:00 2001 From: Nasicus Date: Thu, 15 Apr 2021 19:40:44 +0200 Subject: [PATCH 3/4] Update getting-started.md --- docs/introduction/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction/getting-started.md b/docs/introduction/getting-started.md index eacb33682..a16ba047e 100644 --- a/docs/introduction/getting-started.md +++ b/docs/introduction/getting-started.md @@ -41,7 +41,7 @@ If you are using TypeScript, the React Redux types are maintained separately in npm install @types/react-redux ``` -The code used for this example is almost the same as the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux). Additionally the same code template for typescript can be found [here](https://github.com/reduxjs/cra-template-redux-typescript). +The code used for this example is based on the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux). Additionally the same code template for typescript can be found [here](https://github.com/reduxjs/cra-template-redux-typescript). ## `Provider` From 5021318022a7cf83b44d837bb5e9c892232a06b2 Mon Sep 17 00:00:00 2001 From: Tim Dorr Date: Thu, 15 Apr 2021 16:11:13 -0400 Subject: [PATCH 4/4] Grammar touch ups --- docs/introduction/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction/getting-started.md b/docs/introduction/getting-started.md index a16ba047e..e487f7242 100644 --- a/docs/introduction/getting-started.md +++ b/docs/introduction/getting-started.md @@ -41,7 +41,7 @@ If you are using TypeScript, the React Redux types are maintained separately in npm install @types/react-redux ``` -The code used for this example is based on the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux). Additionally the same code template for typescript can be found [here](https://github.com/reduxjs/cra-template-redux-typescript). +The code used for this example is based on the [official Redux template](https://github.com/reduxjs/cra-template-redux). Additionally, the same code template for TypeScript can be found [here](https://github.com/reduxjs/cra-template-redux-typescript). ## `Provider`