Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/content/reference/react-dom/client/hydrateRoot.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ export default function App() {

</Sandpack>

This only works one level deep, and is intended to be an escape hatch. Don’t overuse it. Unless it’s text content, React still won’t attempt to patch it up, so it may remain inconsistent until future updates.

This only works one level deep, meaning it allows bypassing React’s control only on direct child elements, not nested ones. Intended as an escape hatch for cases like embedding raw HTML or external content, it should be used sparingly. React won’t track updates beyond that first level, which may lead to inconsistencies until future updates.

---

Expand Down