From a16031cd20ca70cb2173a45cd16ba2b2edcedb61 Mon Sep 17 00:00:00 2001 From: Brendan Date: Tue, 16 Oct 2018 17:52:50 -0600 Subject: [PATCH] Fixed grammar, added link (#19544) * Fixed grammar, added link * fix: minor typo by contributor --- client/src/pages/learn/front-end-libraries/react/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/learn/front-end-libraries/react/index.md b/client/src/pages/learn/front-end-libraries/react/index.md index 73c539e2ef..b2f941b666 100644 --- a/client/src/pages/learn/front-end-libraries/react/index.md +++ b/client/src/pages/learn/front-end-libraries/react/index.md @@ -5,6 +5,6 @@ superBlock: Front End Libraries --- ## Introduction to the React Challenges -React, popularized by Facebook, is an open-source JavaScript library for building user interfaces. It is used to create components, handle state and props, utilize event listeners and certain life cycle methods to update data as it changes. +[React](https://reactjs.org/), created by Facebook, is an open-source JavaScript library for building user interfaces. It is used to create components, handle state and props, utilize event listeners and certain life cycle methods to update data as it changes. React combines HTML with JavaScript functionality to create its own markup language, JSX. This section will introduce you to all of these concepts and how to implement them for use with your own projects.