docs: fix a broken link in react-labs-june-2022 (#6149)

This commit is contained in:
Matan Borenkraout
2023-07-25 17:35:34 +03:00
committed by GitHub
parent 19c0fe2dcc
commit a472775b7c

View File

@@ -20,7 +20,7 @@ To set expectations, this is not a roadmap with clear timelines. Many of these p
## Server Components {/*server-components*/}
We announced an [experimental demo of React Server Components](https://reactjs.org/blog/2020/12/21/data-fetching-with-react-server-components) (RSC) in December 2020. Since then weve been finishing up its dependencies in React 18, and working on changes inspired by experimental feedback.
We announced an [experimental demo of React Server Components](https://legacy.reactjs.org/blog/2020/12/21/data-fetching-with-react-server-components.html) (RSC) in December 2020. Since then weve been finishing up its dependencies in React 18, and working on changes inspired by experimental feedback.
In particular, were abandoning the idea of having forked I/O libraries (eg react-fetch), and instead adopting an async/await model for better compatibility. This doesnt technically block RSCs release because you can also use routers for data fetching. Another change is that were also moving away from the file extension approach in favor of [annotating boundaries](https://github.com/reactjs/rfcs/pull/189#issuecomment-1116482278).