--- { title: "What are React Server Components (RSCs)?", description: "", published: '2023-12-14T21:52:59.284Z', authors: ['crutchcorn'], tags: ['react', 'webdev'], attached: [], license: 'cc-by-4', collection: "React Beyond the Render", order: 1 } --- So! Instead, what React did is introduce "Server Components", where you can do a few things: - Not re-render on the client - Fetch data on the server and return it to the client 🤫 (spoilers for what I'm _gonna_ write) So instead of: ```tsx