diff --git a/guide/english/react/fragments/index.md b/guide/english/react/fragments/index.md index 7e2c741045..fa77803475 100644 --- a/guide/english/react/fragments/index.md +++ b/guide/english/react/fragments/index.md @@ -8,7 +8,7 @@ Fragments are a way to return multiple elements from the render method without u When attempting to render multiple sibling elements without an enclosing tag in JSX, you will see the error message of `Adjacent JSX elements must be wrapped in an enclosing tag`. -In the past, a frequent solution was to use either a wrapping div or span element. However, version 16.0 of React introduced the addition of `Fragment`, which makes this no longer necessary. +In the past, a frequent solution was to use either a wrapping div or span element, which was not elegant as it would increase the size of DOM tree and this is because of the way JSX works as multiple elements should be wrapped in a div. However, version 16.0 of React introduced the addition of `Fragment`, which makes this no longer necessary. `Fragment` acts a wrapper without adding unnecessary divs or spans elements to the DOM. You can use it directly from the React import: