react.dev
react.dev copied to clipboard
The React documentation website
In React's legacy docs, I see information on [reconciliation](https://legacy.reactjs.org/docs/reconciliation.html) and React's use of the [Virtual DOM](https://legacy.reactjs.org/docs/faq-internals.html). However, when I look up the above concepts at https://react.dev/, I need help finding...
Is it possible to put a banner supporting Palestine since it's under attack now from Isreal and people are dying I want to raise people's awareness about the Palestinian case...
close #5801. The workaround is fine in [zh-hans.react.dev](https://github.com/reactjs/zh-hans.react.dev/actions) now.
From https://stackoverflow.com/questions/70253988/react-resetting-and-preserving-state and https://stackoverflow.com/questions/77718975/why-would-two-react-components-seemingly-in-the-same-position-get-different-stat, it seems that the ["Resetting state at the same position"](https://react.dev/learn/preserving-and-resetting-state#resetting-state-at-the-same-position) section has confused a few people, including myself. I have clarified the text to hopefully reduce...
This PR adds navigation from the main site (`react.dev`) to the individual language sites (`.react.dev`). It also provides instructions on how to contribute to the translation efforts. [This file](https://github.com/reactjs/translations.react.dev/blob/main/langs/langs.json) will...
See this qoute: ```markdown if you use [CodeSandbox](https://codesandbox.io/) or [Create React App](https://create-react-app.dev/), the root component is defined in `src/App.js`. If you use the framework [Next.js](https://nextjs.org/), the root component is defined...
so while scrolling through this page https://react.dev/learn/manipulating-the-dom-with-refs i noticed some flickering that happen  it starts from here immediately i scroll down the flickering start
[https://react.dev/learn/your-first-component](https://react.dev/learn/your-first-component) The highlighted part is outdated in regards to the app router. 

This: ```js if (typeof window === 'undefined') { throw Error('Chat should only render on the client.'); } ``` Should be this: ```js if (typeof document === 'undefined') { throw Error('Chat...