At the end of December 2020, the React development team announced an experimental feature called “React Server Components”. Basically, it enables us to render React components on the server to improve the overall performance of an app.

It’s like a better way of doing server-side rendering.

Commonly, we use the

useEffect hook to fetch data from the server but the problem with this method is that it is not very efficient in terms of speed.

For example, we usually retrieve data from a server by calling an API like this.

#javascript

Introducing React Server Components
1.10 GEEK