diff --git a/src/content/learn/render-and-commit.md b/src/content/learn/render-and-commit.md index f9b05e185a8..af2138f9245 100644 --- a/src/content/learn/render-and-commit.md +++ b/src/content/learn/render-and-commit.md @@ -38,6 +38,8 @@ There are two reasons for a component to render: ### Initial render {/*initial-render*/} +The initial render in React is like making customers comfortable when they arrive by offering them water before they ask for anything. + When your app starts, you need to trigger the initial render. Frameworks and sandboxes sometimes hide this code, but it's done by calling [`createRoot`](/reference/react-dom/client/createRoot) with the target DOM node, and then calling its `render` method with your component: