This repository was archived by the owner on Apr 21, 2023. It is now read-only.
Sync with reactjs.org @ 26a870e1#68
Open
react-translations-bot wants to merge 390 commits intomainfrom
Open
Conversation
* Update package.json * Update README.md * Update package.json * Add tsc for check-all as well * Update README.md * Update README.md Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
* Move all possible style to tailwind classes * Update Sidebar.tsx * fix-collapsable-color * dry run and commit * Update SidebarLink.tsx * Fixes review comments for aria tags * Remove extended tailwind configs * Update tailwind.config.js * Update Sidebar.tsx
* fix: correct the link to navigate to the team page * remove .html Co-authored-by: Strek <harish.sethuraman@freshworks.com>
* Initial blog post commit * Adding jtannady to author yaml * Updating typo * Update text
This reverts commit e8cca8b.
* Initial blog post commit * Adding jtannady to author yaml * Updating typo * Update text * Blog post v2 * Fix code block * Add twitter links * s/on/from * Update thanks * More thanks * syntax highlighting * Update thanks * Update docs intro * Update code * Add link for ReactChina * Generate IDs Co-authored-by: Ricky <rickhanlonii@gmail.com>
This should be Meta now
* Add Link to React Conf 2021 Playlist * Remove `allow` attribute from the `<iframe>` Remove `allow` attribute from the `<iframe>` for React Conf 2021 YouTube playlist.
* fix the code block for createRoot typescript error * added example block code for typescript * Inline example Co-authored-by: dan <dan.abramov@gmail.com>
Co-authored-by: Oliver Williams <oliver@Olivers-MacBook-Pro.local>
Adding React Norway Co-authored-by: CookieDuster <51830273+CookieDuster@users.noreply.github.com>
* Replaced old ReactDOM API with new React v18 API
Replaced old ReactDOM API with new React v18 API
ReactDOM.render(
// Try changing to isLoggedIn={true}:
<Greeting isLoggedIn={false} />,
document.getElementById('root')
);
The above implementation has been replaced by the following implementation according to React v18.
ReactDOM
.createRoot(document.getElementById('root'))
.render(<LoginControl />);
* Changed ReactDOM.createRoot syntax into two lines
```
ReactDOM
.createRoot(document.getElementById('root'))
.render(<LoginControl />);
```
has been changed to
```
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<LoginControl />);
```
* Added a comment on <Greeting/> comp.
* Update more examples for 18 * blargh
…g (#4618) * Explicitly list what methods are included in unmounting and remounting * Move up
* Changing the markdown - Initial commit * Adding the missing instruction to copy the JS and CSS from starter code * reverting the extra text added
Signed-off-by: Jie Peng <im@jiepeng.me>
* [Beta] Replace SVGs with PNGs * Fix up sizes
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This PR was automatically generated.
Merge changes from reactjs.org at 26a870e
The following files have conflicts and may need new translations:
Please fix the conflicts by pushing new commits to this pull request, either by editing the files directly on GitHub or by checking out this branch.
DO NOT SQUASH MERGE THIS PULL REQUEST!
Doing so will "erase" the commits from main and cause them to show up as conflicts the next time we merge.