From f36416f367c2cd47ee9a337824e8dda9e3e662a0 Mon Sep 17 00:00:00 2001 From: Nick Charbonneau Date: Mon, 28 Dec 2020 13:38:39 -0800 Subject: [PATCH] Better CTA --- src/react/9-managing-complex-state.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/react/9-managing-complex-state.md b/src/react/9-managing-complex-state.md index fd729a2d5..bcff5861f 100644 --- a/src/react/9-managing-complex-state.md +++ b/src/react/9-managing-complex-state.md @@ -261,7 +261,9 @@ ReactDOM.render(, document.getElementById('root')); ## What data should be kept in React state? -There is no "right" answer for what data should be stored in state. Applications with simple API requirements may keep everything in state objects. Other apps may opt to store nearly everything in a separate global state management library. +There is no "right" answer for what data should be stored in state. Applications with simple API requirements may keep everything in state objects. Other apps may opt to store nearly everything in a separate global state management library such as Redux or Apollo. + +For a purely React method of maintaining and exposing state accross your application, check out the [next lesson on Context.](context-hooks.html) ## Next Steps