From d7b8f5f8ea4f735fed2df59b28a20daeb3899f64 Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Sun, 11 Sep 2022 18:44:08 -0500 Subject: [PATCH] Update docs/advanced-features/react-18/server-components.md --- docs/advanced-features/react-18/server-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-features/react-18/server-components.md b/docs/advanced-features/react-18/server-components.md index 8b7919dd1853..027a7d6690b1 100644 --- a/docs/advanced-features/react-18/server-components.md +++ b/docs/advanced-features/react-18/server-components.md @@ -10,7 +10,7 @@ React Server Components improve the user experience of your application by pairi With traditional React applications that are client-side only, developers often had to make tradeoffs between SEO and performance. Server Components enable developers to better leverage their server infrastructure and achieve great performance by default. -For example, large dependencies that previously would impact the JavaScript bundle size on the client can instead remain entirely on the server. By sending less JavaScript to the browser, the time to interactive for the page is decreased, leading to improved [Core Web Vitals](https://vercel.com/blog/core-web-vitals). +For example, large dependencies that previously would impact the JavaScript bundle size on the client can instead stay entirely on the server. By sending less JavaScript to the browser, the time to interactive for the page is decreased, leading to improved [Core Web Vitals](https://vercel.com/blog/core-web-vitals). ## React Server Components vs Server-Side Rendering