From 89c4746f9a6beb670f3e077f22a5d54bcab222b2 Mon Sep 17 00:00:00 2001 From: Joe Savona Date: Mon, 21 Dec 2020 12:28:16 -0500 Subject: [PATCH] update links --- text/0000-server-components.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/text/0000-server-components.md b/text/0000-server-components.md index 5cd82c2f..1184079e 100644 --- a/text/0000-server-components.md +++ b/text/0000-server-components.md @@ -1,7 +1,7 @@ # RFC: Server Components * Start Date: 2020-12-21 -* RFC PR: https://github.com/reactjs/rfcs/pull/ +* RFC PR: https://github.com/reactjs/rfcs/pull/188 * React Issue: (leave this empty) > ⚠️ **NOTE: We strongly recommend [watching our talk introducing Server Components](https://reactjs.org/server-components) before reading this RFC.** @@ -390,11 +390,12 @@ A canonical example of a shared component is something like a Markdown renderer. ### Naming Convention for Server/Client Components -> NOTE: **This approach is not final**. We intend to open a separate RFC to solicit feedback from the community about these conventions. We recognize that this choice could have ramifications on the JS ecosystem and we would like to avoid any unintended negative consequences. - +> NOTE: **This approach is not final**. Please [see our related RFC to provide feedback about these conventions](https://github.com/reactjs/rfcs/pull/189). We recognize that this choice could have ramifications on the JS ecosystem and we would like to avoid any unintended negative consequences. Bundlers, linters, and other tools need a way to distinguish between server and Client Components. We are currently using the naming convention of `.server.js` for Server Components and `.client.js` for Client Components, with all other `.js` files considered shared code. In addition, we are exploring some additional conventions for package.json exports to allow different versions of a single package to be used depending on whether the consumer is a server or Client Component. +See [the related RFC](https://github.com/reactjs/rfcs/pull/189) to provide feedback. + ### Open Areas of Research Although we have figured out many of the important fundamentals of Server Components and are starting to experiment with them in production, there are still several areas that we are continuing to research. We will continue to share information as we flush out these and other areas: