From a9d83d421f433d8af706916d3963af6cb75a6886 Mon Sep 17 00:00:00 2001 From: Ken Date: Tue, 5 Mar 2019 08:37:53 -0800 Subject: [PATCH] Adding some perf notes on Redux --- step2-06/demo/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/step2-06/demo/README.md b/step2-06/demo/README.md index 7be7786..df3bfe3 100644 --- a/step2-06/demo/README.md +++ b/step2-06/demo/README.md @@ -67,3 +67,9 @@ So, that's a lot to digest. We'll go through these different parts: 3. Finally, `connect()` actually returns a function that **decorates** a `` into `` - it is a strange syntax, so do study it more closely here. > Yes, `connect()` is a function that takes in functions as arguments that returns a function that takes in a component that return a component. Try to say this fast 10 times :) + +## A Note on Performance + +Some folks going through this bootcamp cannot wait to start making screaming fast apps with Redux. Performance isn't free, and it certainly isn't with Redux. Try going through these links to get started on that topic: + +https://github.com/markerikson/react-redux-links/blob/master/react-performance.md#redux-performance