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

Sync with reactjs.org @ 951fae39 #203

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

Conversation

stuymedova and others added 30 commits November 25, 2021 16:23
* 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
* 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.
Strek and others added 27 commits April 22, 2022 13:23
* 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
@vercel
Copy link

vercel bot commented May 16, 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.