fix: remove useless last sentence on intros (#38176)

This commit is contained in:
Tom
2020-02-06 10:22:15 -06:00
committed by GitHub
parent c76978bdfe
commit a9c173b35b
2 changed files with 0 additions and 4 deletions

View File

@ -8,5 +8,3 @@ superBlock: Front End Libraries
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.
Improve this intro on [GitHub](https://github.com/freeCodeCamp/learn/tree/master/src/introductions/front-end-libraries/react-and-redux/index.md).

View File

@ -6,5 +6,3 @@ superBlock: Front End Libraries
## Introduction to the Redux Challenges
[Redux](https://redux.js.org/) is a predictable state container for JavaScript apps. It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. While you can use Redux with any view library, it's introduced here before being combined with React.
Improve this intro on [GitHub](https://github.com/freeCodeCamp/learn/tree/master/src/introductions/front-end-libraries/redux).