react.dev icon indicating copy to clipboard operation
react.dev copied to clipboard

The React documentation website

Results 680 react.dev issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

feedback

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.

CLA Signed

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...

CLA Signed

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...

CLA Signed

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...

CLA Signed

so while scrolling through this page https://react.dev/learn/manipulating-the-dom-with-refs i noticed some flickering that happen ![react flicking](https://github.com/reactjs/react.dev/assets/73702691/f67cc522-554e-41b5-b5e6-eaa1692ff9d6) 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. ![image](https://github.com/reactjs/react.dev/assets/44023416/06634b92-7516-4c9e-b56a-1d959d6c9229)

![image](https://github.com/reactjs/react.dev/assets/44023416/91404b2f-1bbc-43b9-90e2-6da79bb75ff7)

CLA Signed

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...