From aa31f7ba3a56a77644bac9677b35ff1e8e1d7ea6 Mon Sep 17 00:00:00 2001 From: Wadinga Leonard Date: Thu, 5 Jul 2018 18:19:44 +0100 Subject: [PATCH] Introduction to React Redux Challenges Updated the stub for this series of challenges. --- .../front-end-libraries/react-and-redux/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/learn/src/introductions/front-end-libraries/react-and-redux/index.md b/packages/learn/src/introductions/front-end-libraries/react-and-redux/index.md index 9c7eb23711..3e431024b8 100644 --- a/packages/learn/src/introductions/front-end-libraries/react-and-redux/index.md +++ b/packages/learn/src/introductions/front-end-libraries/react-and-redux/index.md @@ -5,6 +5,6 @@ superBlock: Front End Libraries --- ## Introduction to the React and Redux Challenges -This introduction is a stub +This series of challenges introduces how to use Redux with React. In a React Redux app, you create a single Redux store that manages the state of your entire app. Your React components subscribe to only the pieces of data in the store that are relevant to their role. Then, you dispatch actions directly from React components, which then trigger store updates. -Help us make it real on [GitHub](https://github.com/freeCodeCamp/learn/tree/master/src/introductions). \ No newline at end of file +Improve this intro on [GitHub](https://github.com/freeCodeCamp/learn/tree/master/src/introductions).