Fix Robin Pokorny’s Index as a key is an anti-pattern article link
Notes:
Link is not working neither in my PC nor my phone.
I tried to open it in incognito browser and didn't work.
I don't know the website works in all countries or not but here in Cairo, Egypt doesn't work.
And this is not the first link I encountered doesn't work
React Knowledgeable website seems to go to some spam website now and the community facebook page has been updated since 2019. Probably no longer active
https://www.facebook.com/reactknowledgeable/
* Add initial React Labs June 2022 blog post
* Update Robert's url to twitter
* Add link to React Server Module Conventions RFC
* Update 2022-06-15-react-labs-what-we-have-been-working-on-june-2022.md
* Fix url
* Update content/blog/2022-06-15-react-labs-what-we-have-been-working-on-june-2022.md
Co-authored-by: Andrew Clark <git@andrewclark.io>
* Fix Sophie's url
* Fix bulleted list for Offscreen section
Co-authored-by: Luna Ruan <lunaris.ruan@gmail.com>
Co-authored-by: Andrew Clark <git@andrewclark.io>
* 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.
* fix the code block for createRoot typescript error
* added example block code for typescript
* Inline example
Co-authored-by: dan <dan.abramov@gmail.com>
* fix the code block for AppWithCallbackAfterRender
fix the code block for AppWithCallbackAfterRender by using createRoot method from 'react-dom/client'
* Update 2022-03-08-react-18-upgrade-guide.md
Co-authored-by: dan <dan.abramov@gmail.com>