diff --git a/src/content/community/conferences.md b/src/content/community/conferences.md index 69b7bdd31..b7e106c45 100644 --- a/src/content/community/conferences.md +++ b/src/content/community/conferences.md @@ -32,6 +32,31 @@ October 21-23, 2026. In presenza a Athens [Sito web](https://athens.cityjsconf.org/) - [Twitter](https://x.com/cityjsconf) - [Bluesky](https://bsky.app/profile/cityjsconf.bsky.social) +### React Advanced London 2026 {/*react-advanced-london-2026*/} +October 23 & 26, 2026. In-person in London, UK + online (hybrid event) + +[Website](https://reactadvanced.com/) - [Twitter](https://x.com/reactadvanced) - [LinkedIn](https://www.linkedin.com/showcase/react-advanced-london/) + +### React Summit US 2026 {/*react-summit-us-2026*/} +November 17 & 20, 2026. In-person in New York, USA + online (hybrid event) + +[Website](https://reactsummit.us/) - [Twitter](https://x.com/reactsummit) - [LinkedIn](https://www.linkedin.com/showcase/reactsummit) + +### React Day Berlin 2026 {/*react-day-berlin-2026*/} +December 4 & 7, 2026. In-person in Berlin, Germany + online (hybrid event) + +[Website](https://reactday.berlin/) - [Twitter](https://x.com/reactdayberlin) - [LinkedIn](https://www.linkedin.com/showcase/react-day-berlin/) + +### React Summit Asia 2027 {/*react-summit-asia-2027*/} +April 15 & 19, 2027. In-person in Singapore + online (hybrid event) + +[Website](https://reactsummit.asia/) - [Twitter](https://x.com/reactsummit) - [LinkedIn](https://www.linkedin.com/showcase/reactsummit) + +### React Summit 2027 {/*react-summit-2027*/} +May 21 & 25, 2027. In-person in Amsterdam, Netherlands + online (hybrid event) + +[Website](https://reactsummit.com/) - [Twitter](https://x.com/reactsummit) - [LinkedIn](https://www.linkedin.com/showcase/reactsummit) + ## Conferenze passate {/*past-conferences*/} diff --git a/src/content/reference/react-dom/browser.md b/src/content/reference/react-dom/browser.md index 00c60d37d..8b0090575 100644 --- a/src/content/reference/react-dom/browser.md +++ b/src/content/reference/react-dom/browser.md @@ -47,7 +47,7 @@ During server rendering, `use(browser())` stops rendering the component and leav #### Caveats {/*caveats*/} * `use(browser())` must be inside a `` boundary during server rendering. Without one, the server render fails. -* 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). +* `use(browser())` must be called from a [Client Component](/reference/rsc/use-client), not a [Server Component](/reference/rsc/server-components). * 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. --- @@ -206,7 +206,7 @@ iframe { -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: +`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: ```js {1} 'use client';