From 929963809f12439e845a38576b51f475cc0d2227 Mon Sep 17 00:00:00 2001 From: Alexander King Date: Thu, 1 Nov 2018 22:06:14 -0500 Subject: [PATCH] Fixed grammatical errors (#33112) --- guide/english/react/hello-world/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/react/hello-world/index.md b/guide/english/react/hello-world/index.md index 924e96f553..29d1ffabbe 100644 --- a/guide/english/react/hello-world/index.md +++ b/guide/english/react/hello-world/index.md @@ -3,7 +3,7 @@ title: Hello World --- ## Hello World !! -Every language learning starts with Traditional Hello World example. Here, you get introduced to React with the same HelloWorld program. +Every language learning starts with a traditional Hello World example. Here, you get introduced to React with the same Hello World program. Everything in React is a component. @@ -62,8 +62,8 @@ document.getElementById('root')); //The is the way components are calle ``` -In the above, App.js is called a component. Normally, we make multiple components and put them together in App.js which will be then rendered in index.js which is then rendered into the root div that is in the index.html. +In the above, App.js is called a component. Normally, we make multiple components and put them together in App.js, which will then be rendered in index.js, and finally, into the root div in index.html. -Congrats!! You have created your first React Hello world app. You will learn more about React in the coming articles. +Congrats!! You have created your first React Hello World app. You can learn more about React in the other React Guide articles. Happy Coding!!