From a9c173b35b030763370c1a523afb1a65962b741b Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Thu, 6 Feb 2020 10:22:15 -0600 Subject: [PATCH] fix: remove useless last sentence on intros (#38176) --- .../pages/learn/front-end-libraries/react-and-redux/index.md | 2 -- client/src/pages/learn/front-end-libraries/redux/index.md | 2 -- 2 files changed, 4 deletions(-) diff --git a/client/src/pages/learn/front-end-libraries/react-and-redux/index.md b/client/src/pages/learn/front-end-libraries/react-and-redux/index.md index 104c4257e6..2ac7782f62 100644 --- a/client/src/pages/learn/front-end-libraries/react-and-redux/index.md +++ b/client/src/pages/learn/front-end-libraries/react-and-redux/index.md @@ -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). diff --git a/client/src/pages/learn/front-end-libraries/redux/index.md b/client/src/pages/learn/front-end-libraries/redux/index.md index 41beaa02e7..3247c59285 100644 --- a/client/src/pages/learn/front-end-libraries/redux/index.md +++ b/client/src/pages/learn/front-end-libraries/redux/index.md @@ -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).