This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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 |