From b0928aa717c8e2fefd61860a27c4e8742d9c90a2 Mon Sep 17 00:00:00 2001 From: Travis Hohl Date: Mon, 23 Jul 2018 19:55:51 -0500 Subject: [PATCH 1/2] The article should be optional reading It's great to provide additional reading, but what if we made it seem more optional? --- docs/basics/UsageWithReact.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/basics/UsageWithReact.md b/docs/basics/UsageWithReact.md index 547640b255..cc43e829c6 100644 --- a/docs/basics/UsageWithReact.md +++ b/docs/basics/UsageWithReact.md @@ -18,9 +18,7 @@ If you don't use npm, you may grab the latest UMD build from unpkg (either a [de ## Presentational and Container Components -React bindings for Redux embrace the idea of **separating presentational and container components**. If you're not familiar with these terms, [read about them first](https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0), and then come back. They are important, so we'll wait! - -Finished reading the article? Let's recount their differences: +React bindings for Redux separate _presentational_ components from _container_ components. This approach can make your app easier to understand and allow you to more easily reuse components. Here's a summary of the differences between presentational and container components (but if you're unfamiliar, we recommend that you also read [this article](https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0)): From 33d411fe8e6ac49cf7a45c096c5c1d3d36624dc5 Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Sun, 2 Sep 2018 14:56:50 -0400 Subject: [PATCH 2/2] Tweak presentational/container link wording --- docs/basics/UsageWithReact.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics/UsageWithReact.md b/docs/basics/UsageWithReact.md index cc43e829c6..2216a8dbdc 100644 --- a/docs/basics/UsageWithReact.md +++ b/docs/basics/UsageWithReact.md @@ -18,7 +18,7 @@ If you don't use npm, you may grab the latest UMD build from unpkg (either a [de ## Presentational and Container Components -React bindings for Redux separate _presentational_ components from _container_ components. This approach can make your app easier to understand and allow you to more easily reuse components. Here's a summary of the differences between presentational and container components (but if you're unfamiliar, we recommend that you also read [this article](https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0)): +React bindings for Redux separate _presentational_ components from _container_ components. This approach can make your app easier to understand and allow you to more easily reuse components. Here's a summary of the differences between presentational and container components (but if you're unfamiliar, we recommend that you also read [Dan Abramov's original article describing the concept of presentational and container components](https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0)):