From 64b93dfb64f8f5468b1f932a17d2992cd4ddbb30 Mon Sep 17 00:00:00 2001 From: Niraj Nandish Date: Sun, 15 Jul 2018 18:37:36 +0400 Subject: [PATCH] fix(challenges): broken link --- challenges/03-front-end-libraries/react.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/03-front-end-libraries/react.json b/challenges/03-front-end-libraries/react.json index fc65ea08fc..2c5f07887a 100644 --- a/challenges/03-front-end-libraries/react.json +++ b/challenges/03-front-end-libraries/react.json @@ -2880,7 +2880,7 @@ "title": "Introducing Inline Styles", "releasedOn": "December 25, 2017", "description": [ - "There are other complex concepts that add powerful capabilities to your React code. But you may be wondering about the more simple problem of how to style those JSX elements you create in React. You likely know that it won't be exactly the same as working with HTML because of the way you apply classes to JSX elements.", + "There are other complex concepts that add powerful capabilities to your React code. But you may be wondering about the more simple problem of how to style those JSX elements you create in React. You likely know that it won't be exactly the same as working with HTML because of the way you apply classes to JSX elements.", "If you import styles from a stylesheet, it isn't much different at all. You apply a class to your JSX element using the className attribute, and apply styles to the class in your stylesheet. Another option is to apply inline styles, which are very common in ReactJS development.", "You apply inline styles to JSX elements similar to how you do it in HTML, but with a few JSX differences. Here's an example of an inline style in HTML:", "<div style=\"color: yellow; font-size: 16px\">Mellow Yellow</div>",