Introduction
React Server Components (RSC) represent a paradigm shift in how we build React applications. By running components exclusively on the server, we can reduce bundle sizes and improve performance.
tsx
export default async function Page() {
const data = await fetch("https://api.example.com");
return <div>{data.name}</div>;
}Conclusion
Server components allow data fetching on the server without sending the JS bundle to the client.


