From a684a6612f27c23ec6729fc98da0ebed7e381298 Mon Sep 17 00:00:00 2001 From: Rahul RK <47377566+DevTMK@users.noreply.github.com> Date: Mon, 12 Jul 2021 01:14:30 +0530 Subject: [PATCH] Update react/README.md Fix jsx display issue in webpage https://airbnb.io/javascript/react/#quotes Fixes #2301 --- react/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/react/README.md b/react/README.md index e7679d26da..f5334c98b2 100644 --- a/react/README.md +++ b/react/README.md @@ -243,6 +243,7 @@ This style guide is mostly based on the standards that are currently prevalent i > Why? Regular HTML attributes also typically use double quotes instead of single, so JSX attributes mirror this convention. + ```jsx // bad @@ -256,6 +257,7 @@ This style guide is mostly based on the standards that are currently prevalent i // good ``` + ## Spacing