Skip to content

Commit acd9b55

Browse files
committed
tweaks
1 parent 9f70ded commit acd9b55

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/content/blog/2025/02/14/sunsetting-create-react-app.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Frameworks provide the same getting started experience as Create React App, but
267267

268268
<DeepDive>
269269

270-
#### Server Rendering is Not Required {/*server-rendering-is-not-required*/}
270+
#### Server rendering is optional {/*server-rendering-is-optional*/}
271271

272272
The frameworks we recommend all provide the option to create a [client-side rendered (CSR)](https://developer.mozilla.org/en-US/docs/Glossary/CSR) app.
273273

@@ -279,6 +279,16 @@ There are tradeoffs to using a server, and it is not always the best option for
279279

280280
Frameworks provide the option to use a server on any page if you want to, but do not force you to use a server. This allows you to pick the right rendering strategy for each page in your app.
281281

282+
#### What About Server Components {/*server-components*/}
283+
284+
The frameworks we recommend also include support for React Server Components.
285+
286+
Server Components help solve these problems by moving routing and data fetching to the server, and allowing code splitting to be done for client components based on the data you render, instead of just the route rendered, and reducing the amount of JavaScript shipped for the best possible [loading sequence](https://www.patterns.dev/vanilla/loading-sequence).
287+
288+
Server Components do not require a server. They can be run at build time on your CI server to create a static-site generated app (SSG) app, at runtime on a web server for a server-side rendered (SSR) app.
289+
290+
See [Introducing zero-bundle size React Server Components](/blog/2020/12/21/data-fetching-with-react-server-components) and [the docs](/reference/rsc/server-components) for more info.
291+
282292
</DeepDive>
283293

284294
<Note>

0 commit comments

Comments
 (0)