From f9ab91a76036a76d3c73664b4906046d0cb89fd3 Mon Sep 17 00:00:00 2001 From: Joshua Folorunsho Date: Wed, 7 Oct 2020 05:47:00 +0100 Subject: [PATCH] chore: fix typo, change 'create-reap-app' to 'create-react-app' --- 02_Day_Introduction_to_React/02_introduction_to_react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_Day_Introduction_to_React/02_introduction_to_react.md b/02_Day_Introduction_to_React/02_introduction_to_react.md index fa995b8..2b78577 100644 --- a/02_Day_Introduction_to_React/02_introduction_to_react.md +++ b/02_Day_Introduction_to_React/02_introduction_to_react.md @@ -182,7 +182,7 @@ We comment codes for different reasons and it is also good to know how to commen #### Rendering a JSX Element -To render a JSX element to HTML document, we should first create an index HTML. The index.html is the only HTML file you will have in any React Application. That is why we say that every React Application is a single page application. Let us create an index.html file. We can get started with React in two ways - either by using CDN or create-react-app. The create-react-app creates a React project boilerplate outbox and because of that, many people do have a hard time to understand how React works. In order to make things clear for absolute beginners I would like to start with a CDN. We use CDN only in this section and we will use the create-reap-app in the rest of the challenge and I also recommend you to use only create-react-app all the time. +To render a JSX element to HTML document, we should first create an index HTML. The index.html is the only HTML file you will have in any React Application. That is why we say that every React Application is a single page application. Let us create an index.html file. We can get started with React in two ways - either by using CDN or create-react-app. The create-react-app creates a React project boilerplate outbox and because of that, many people do have a hard time to understand how React works. In order to make things clear for absolute beginners I would like to start with a CDN. We use CDN only in this section and we will use the create-react-app in the rest of the challenge and I also recommend you to use only create-react-app all the time. ```html