Fakhruddin Ali Hussain
26caa64982
Fixes hydrateRoot link ( #4775 )
...
Fixes #4770
2022-06-27 09:09:00 +05:30
Romain Bohdanowicz
fb65da64ac
docs: class properties and object spread are no longer experimental ( #4754 )
...
Co-authored-by: Romain Bohdanowicz <romain.bohdanowicz@formation.tech >
2022-06-20 20:38:39 +02:00
Hung Viet Nguyen
c3e09c52c9
Fix a typo in #4726 ( #4762 )
2022-06-20 13:03:02 +05:30
Peter Hauke
df2673d1b6
Fix minor grammar error ( #4756 )
2022-06-18 11:57:59 +02:00
Aroyan
6418ebc220
fix: update broken link for Colorable ( #4753 )
...
Update broken link for Colorable in Color contrast section
2022-06-17 14:28:05 +01:00
Swarnava Sengupta
763d57bb4e
Add 18.2.0 info in website ( #4747 )
...
Co-authored-by: Sebastian Silbermann <silbermann.sebastian@gmail.com >
2022-06-15 20:51:20 +02:00
Lauren Tan
a7b65d6b8c
Add initial React Labs June 2022 blog post ( #4745 )
...
* 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 >
2022-06-15 11:07:40 -07:00
Adrian Kast
7a7661a345
Fix React Alicante 2022 website link ( #4743 )
...
changing the link from http to https since the http version seems not to get forwarded (404)
2022-06-14 11:26:39 +01:00
enoughtal
11a5ea0a73
typo ( #4725 )
2022-06-10 20:46:33 +05:30
Kim Brandwijk
4bfd89654f
docs: fix optional argument representation ( #4732 )
2022-06-10 12:10:28 +05:30
Kent C. Dodds
0831df4796
add remix conf ( #4726 )
...
* add remix conf
* add remix conf 2023
2022-06-07 23:36:18 +01:00
Jamie Kyle
486087f1b3
Remove social links from prev React Europe events ( #4724 )
...
These are now pointing at a different event, I've left/updated the video links though for posterity
2022-06-06 17:31:28 +01:00
Strek
3aac8c5984
use proper code block ( #4671 )
2022-05-22 11:06:07 +05:30
Erik Rasmussen
6db368a9bc
Relegate Reactathon 2022 to the annals of history ( #4663 )
2022-05-17 14:06:25 +01:00
Piotr Pośpiech
951fae39f0
added meetup ( #4655 )
2022-05-12 22:02:37 +05:30
Jie Peng
dfe5080e2b
fix(reference-react): typo ( #4631 )
...
Signed-off-by: Jie Peng <im@jiepeng.me >
2022-05-06 21:46:36 +01:00
Sathvik Shanmugam
e34f5145e9
Tutorial markdown changes for React18 ( #4630 )
...
* Changing the markdown - Initial commit
* Adding the missing instruction to copy the JS and CSS from starter code
* reverting the extra text added
2022-05-05 21:20:36 +05:30
Sebastian Silbermann
3411c0d0c4
Explicitly list what methods are included in unmounting and remounting ( #4618 )
...
* Explicitly list what methods are included in unmounting and remounting
* Move up
2022-05-02 22:00:09 +02:00
lxmarinkovic
09f8bcc4c5
RactGlobal-to-past-conferences ( #4609 )
2022-05-01 09:48:11 +05:30
lxmarinkovic
fb12ba280c
ReactNext-2022 ( #4606 )
2022-05-01 09:46:03 +05:30
dan
a7d2254e0d
Update more examples for 18 ( #4607 )
...
* Update more examples for 18
* blargh
2022-04-27 20:12:07 +01:00
Muhammad Yasir
2a8e0a7ab5
Replaced old ReactDOM API with new React v18 API ( #4598 )
...
* 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.
2022-04-27 02:17:23 +01:00
Soichiro Miki
b5c75c4290
Fix behavior of renderToStaticMarkup ( #4600 )
2022-04-26 02:19:49 +01:00
dan
9e29400997
Break down code into separate lines
2022-04-25 16:23:25 +01:00
Strek
1d21630e12
Update conferences.md ( #4593 )
2022-04-22 13:23:18 +05:30
Soichiro Miki
0d3233df60
Fix "Integrating with Other View Libraries" ( #4585 )
2022-04-20 19:10:53 +01:00
Dhairya
ab29c8aa1c
Update conferences.md ( #4589 )
...
Adding React Norway
Co-authored-by: CookieDuster <51830273+CookieDuster@users.noreply.github.com >
2022-04-19 22:45:52 +05:30
Vaskevich Aleksander
63234808da
fix the code block for createRoot typescript error ( #4576 )
...
* fix the code block for createRoot typescript error
* added example block code for typescript
* Inline example
Co-authored-by: dan <dan.abramov@gmail.com >
2022-04-13 15:25:28 +01:00
Indermohan Singh
4a7144078c
fix the code block for AppWithCallbackAfterRender ( #4571 )
...
* 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 >
2022-04-11 19:48:18 +01:00
Antony Budianto
84ad330833
fix typo "sever" on reference-react-dom-server.md ( #4570 )
2022-04-10 14:37:42 +01:00
dan
b2d16e5ac6
Mention TypeScript in the upgrade post ( #4567 )
...
* Mention TypeScript in the upgrade post
* Add a link
2022-04-08 19:36:34 +01:00
Sebastian Silbermann
42100a3448
renderToReadableStream: Ensure same var name is used in onError ( #4562 )
2022-04-07 19:27:13 +01:00
dan
d14cbdca24
Add more details on batching ( #4559 )
...
* Add more details on batching
* Use a generic example
2022-04-07 15:39:12 +01:00
dan
1015a73e1a
Clarify renderToString etc usage
2022-04-07 01:27:08 +01:00
dan
a78cc99618
Edits for ReactDOMServer API ( #4558 )
...
* Edits for ReactDOMServer API
* Move note below example
* No destructure
* Rm hr
* Add onError
* Drop SEO
* Update reference-react-dom-server.md
2022-04-07 00:59:23 +01:00
dan
65b04292eb
Document useId is not for keys ( #4557 )
2022-04-06 21:49:13 +01:00
Marco Antonio Ghiani
3fa71f02a2
Fix params order for hydrateRoot reference ( #4552 )
2022-04-06 14:43:38 +05:30
Strek
cb4c9d319f
Update conferences.md ( #4546 )
2022-04-04 18:18:30 +05:30
Juho Vepsäläinen
cb11ae479e
docs: Add React Finland 2022 ( #4544 )
2022-04-04 17:22:49 +05:30
dan
707f22d25f
Add call to action to 18 blog post ( #4542 )
2022-04-03 21:37:23 +01:00
Noel Kim (김민혁)
ec2dcbc737
Update Prerequisites nodejs version ( #4538 )
...
* Update Prerequisites nodejs version
* Update how-to-contribute.md
2022-04-03 15:34:01 +01:00
Kiran Abburi
2666c95575
Added React Day Bangalore 2022 ( #4539 )
2022-04-03 15:25:34 +05:30
Sanghyup Jeong
c77e2f2422
Fix typo in Automatic Batching example ( #4532 )
...
Co-authored-by: sanghyupjeong-29cm <hyupee@29cm.co.kr >
2022-03-31 04:50:30 +01:00
dan
0982707a98
Update StrictMode docs about double logging ( #4531 )
2022-03-30 19:05:09 +01:00
Angelos Chalaris
56a0dca6fb
Update CDN links for React 18 ( #4528 )
2022-03-30 17:06:07 +01:00
Angelos Chalaris
f5c84d47ab
Update CDN links for React 18 ( #4523 )
2022-03-30 07:47:53 +01:00
dan
b5fd1df671
Add a note about Strict Mode to release blog post ( #4521 )
...
* Add a note about Strict Mode to release blog post
* Update 2022-03-08-react-18-upgrade-guide.md
* Update 2022-03-08-react-18-upgrade-guide.md
2022-03-30 03:38:02 +01:00
lilac-ss
c623de4e62
fix useTransition link ( #4519 )
2022-03-30 03:10:59 +01:00
Sukka
69ca55b931
Fix usage of useDeferredValue ( #4520 )
2022-03-30 03:07:59 +01:00
dan
41c3ca570f
Document the new consistent Suspense behavior ( #4517 )
...
* Document the new consistent Suspense behavior
* Update 2022-03-08-react-18-upgrade-guide.md
* Update 2022-03-08-react-18-upgrade-guide.md
2022-03-29 23:13:07 +01:00