Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Sync with reactjs.org @ 26a870e1 #197

Open
wants to merge 556 commits into
base: main
Choose a base branch
from
Open

Conversation

react-translations-bot
Copy link
Collaborator

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.

Strek and others added 30 commits November 24, 2021 17:28
* 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 <[email protected]>
* 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 <[email protected]>
* Initial blog post commit

* Adding jtannady to author yaml

* Updating typo

* Update text
* 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 <[email protected]>
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.
folt and others added 29 commits April 13, 2022 15:25
* fix the code block for createRoot typescript error

* added example block code for typescript

* Inline example

Co-authored-by: dan <[email protected]>
Adding React Norway

Co-authored-by: CookieDuster <[email protected]>
* 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
* [Beta] Replace SVGs with PNGs

* Fix up sizes
@vercel
Copy link

vercel bot commented May 9, 2022

Deployment failed with the following error:

Invalid vercel.json file provided

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.