From c9dc91a3b323e72e5093f18b0dad3f47ebc07685 Mon Sep 17 00:00:00 2001 From: raunofreiberg Date: Mon, 19 Mar 2018 11:16:55 +0200 Subject: [PATCH] =?UTF-8?q?[react]=20[docs]=C2=A0improve=20wording=20of=20?= =?UTF-8?q?fragments=20example?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react.md b/react.md index 1b5ae94d8..303210856 100644 --- a/react.md +++ b/react.md @@ -106,7 +106,7 @@ class Info extends React.Component { } } ``` -As of React v16.2.0 components can return multiple grouped elements without adding extra nodes to the DOM. In this example, you would get the nested components' nodes without a wrapping element. +As of React v16.2.0, fragments can be used to return multiple children without adding extra wrapping nodes to the DOM. ```jsx class Info extends React.Component {