Finished translation of Fragment page#460
Merged
bkatsevych merged 3 commits intoreactjs:mainfrom May 21, 2023
Merged
Conversation
Kamilius
suggested changes
May 4, 2023
| <Intro> | ||
|
|
||
| `<Fragment>`, often used via `<>...</>` syntax, lets you group elements without a wrapper node. | ||
| `<Fragment>`, часто використовується за допомогою синтаксису `<>...</>`, дозволяє групувати елементи без обгорткового вузла. |
There was a problem hiding this comment.
Ніколи не чув на практиці "обгортковий вузол". Можливо краще замінити на "елементу-обгортки"? Чи чогось по типу цього?
| ### `<Fragment>` {/*fragment*/} | ||
|
|
||
| Wrap elements in `<Fragment>` to group them together in situations where you need a single element. Grouping elements in `Fragment` has no effect on the resulting DOM; it is the same as if the elements were not grouped. The empty JSX tag `<></>` is shorthand for `<Fragment></Fragment>` in most cases. | ||
| Огорніть елементи у `<Fragment>` щоб групувати їх разом в ситуаціях, коли вам потрібен один елемент. Групування елементів у `Fragment` не впливає на результуючий DOM; це так само, як і якщо елементи не були згруповані. Порожній тег JSX `<></>` є скороченням для `<Fragment></Fragment>` у більшості випадків. |
There was a problem hiding this comment.
"Порожній тег JSX `<></>` є скороченням для `<Fragment></Fragment>` у більшості випадків"
звучить трохи не природньо. Як щодо того аби перефразувати наступним чином?
У більшості випадків, порожній тег JSX `<></>` є скороченням для `<Fragment></Fragment>`.
fbc24a5 to
8f117dc
Compare
Contributor
Author
|
Згоден. |
bkatsevych
reviewed
May 21, 2023
bkatsevych
reviewed
May 21, 2023
bkatsevych
reviewed
May 21, 2023
bkatsevych
reviewed
May 21, 2023
bkatsevych
reviewed
May 21, 2023
bkatsevych
reviewed
May 21, 2023
bkatsevych
reviewed
May 21, 2023
Size changesDetails📦 Next.js Bundle Analysis for react-devThis analysis was generated by the Next.js Bundle Analysis action. 🤖 This PR introduced no changes to the JavaScript bundle! 🙌 |
bkatsevych
approved these changes
May 21, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fragment.md page translation.