Skip to content

Commit c69db21

Browse files
Merge pull request #250 from reactjs/sync-b011783f
Sync with react.dev @ b011783
2 parents 0c735af + 4705451 commit c69db21

2 files changed

Lines changed: 27 additions & 2 deletions

File tree

src/content/community/conferences.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,31 @@ October 21-23, 2026. In-person in Athens
2525

2626
[Website](https://athens.cityjsconf.org/) - [Twitter](https://x.com/cityjsconf) - [Bluesky](https://bsky.app/profile/cityjsconf.bsky.social)
2727

28+
### React Advanced London 2026 {/*react-advanced-london-2026*/}
29+
October 23 & 26, 2026. In-person in London, UK + online (hybrid event)
30+
31+
[Website](https://reactadvanced.com/) - [Twitter](https://x.com/reactadvanced) - [LinkedIn](https://www.linkedin.com/showcase/react-advanced-london/)
32+
33+
### React Summit US 2026 {/*react-summit-us-2026*/}
34+
November 17 & 20, 2026. In-person in New York, USA + online (hybrid event)
35+
36+
[Website](https://reactsummit.us/) - [Twitter](https://x.com/reactsummit) - [LinkedIn](https://www.linkedin.com/showcase/reactsummit)
37+
38+
### React Day Berlin 2026 {/*react-day-berlin-2026*/}
39+
December 4 & 7, 2026. In-person in Berlin, Germany + online (hybrid event)
40+
41+
[Website](https://reactday.berlin/) - [Twitter](https://x.com/reactdayberlin) - [LinkedIn](https://www.linkedin.com/showcase/react-day-berlin/)
42+
43+
### React Summit Asia 2027 {/*react-summit-asia-2027*/}
44+
April 15 & 19, 2027. In-person in Singapore + online (hybrid event)
45+
46+
[Website](https://reactsummit.asia/) - [Twitter](https://x.com/reactsummit) - [LinkedIn](https://www.linkedin.com/showcase/reactsummit)
47+
48+
### React Summit 2027 {/*react-summit-2027*/}
49+
May 21 & 25, 2027. In-person in Amsterdam, Netherlands + online (hybrid event)
50+
51+
[Website](https://reactsummit.com/) - [Twitter](https://x.com/reactsummit) - [LinkedIn](https://www.linkedin.com/showcase/reactsummit)
52+
2853

2954
## Past Conferences {/*past-conferences*/}
3055

src/content/reference/react-dom/browser.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ During server rendering, `use(browser())` stops rendering the component and leav
4747
#### Caveats {/*caveats*/}
4848
4949
* `use(browser())` must be inside a `<Suspense>` boundary during server rendering. Without one, the server render fails.
50-
* In a React Server Components app, `use(browser())` must be called from a [Client Component](/reference/rsc/use-client), not a [Server Component](/reference/rsc/server-components).
50+
* `use(browser())` must be called from a [Client Component](/reference/rsc/use-client), not a [Server Component](/reference/rsc/server-components).
5151
* Calling `browser()` by itself has no effect. To mark a component as browser-only, pass the value returned by `browser` to `use`. Do not throw it.
5252
5353
---
@@ -206,7 +206,7 @@ iframe {
206206
207207
<Note>
208208
209-
In a React Server Components app, `use(browser())` must be called from a Client Component. If your framework uses Server Components by default, add the [`'use client'`](/reference/rsc/use-client) directive to that file or move the call to a child Client Component:
209+
`use(browser())` must be called from a Client Component. If your framework uses Server Components by default, add the [`'use client'`](/reference/rsc/use-client) directive to that file or move the call to a child Client Component:
210210
211211
```js {1}
212212
'use client';

0 commit comments

Comments
 (0)