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