From fb40f568764836b85587ce72cdea2fc73517ecd3 Mon Sep 17 00:00:00 2001 From: Alan <53200557+inThaHouse@users.noreply.github.com> Date: Mon, 29 Mar 2021 12:00:12 -0400 Subject: [PATCH] fix(curriculum): malformed paragraph in react/redux (#41645) * fix: re-arranged paragraph in react-redux lesson * fix: re-arranged paragraph in react-redux lesson in different locales * fix: reverted other locale changes * fix: switched link to enable opening as a new tab --- .../react-and-redux/moving-forward-from-here.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/react-and-redux/moving-forward-from-here.md b/curriculum/challenges/english/03-front-end-libraries/react-and-redux/moving-forward-from-here.md index 77ef3860f5..b7921af1cc 100644 --- a/curriculum/challenges/english/03-front-end-libraries/react-and-redux/moving-forward-from-here.md +++ b/curriculum/challenges/english/03-front-end-libraries/react-and-redux/moving-forward-from-here.md @@ -10,9 +10,7 @@ dashedName: moving-forward-from-here Congratulations! You finished the lessons on React and Redux. There's one last item worth pointing out before you move on. Typically, you won't write React apps in a code editor like this. This challenge gives you a glimpse of what the syntax looks like if you're working with npm and a file system on your own machine. The code should look similar, except for the use of `import` statements (these pull in all of the dependencies that have been provided for you in the challenges). The "Managing Packages with npm" section covers npm in more detail. -Finally, writing React and Redux code generally requires some configuration. This can get complicated quickly. If you are interested in experimenting on your own machine, the - -[Create React App](https://github.com/facebookincubator/create-react-app) comes configured and ready to go. +Finally, writing React and Redux code generally requires some configuration. This can get complicated quickly. If you are interested in experimenting on your own machine, the Create React App comes configured and ready to go. Alternatively, you can enable Babel as a JavaScript Preprocessor in CodePen, add React and ReactDOM as external JavaScript resources, and work there as well.