Skip to content

Instantly share code, notes, and snippets.

View MikeCarbone's full-sized avatar
🔨
Building

Mike Carbone MikeCarbone

🔨
Building
View GitHub Profile
@MikeCarbone
MikeCarbone / page-component.tsx
Last active April 4, 2023 00:13
React Server Components (RSC), Suspense, and Streaming in Next.js 13 & App Dir
// STREAMING, SUSPENSE & REACT SERVER COMPONENTS DEMO
// 2 components:
// Page component that fetches important data for inital load
// Server component that fetches non-essential data that we want to stream in when ready
// FILE 1:
// Page - Server component by default
export default async function PageComponent() {
// Whatever data you need for immediate rendering