Welcome to Next.js!
} ``` ## Server Components Server Components execute on the server and send HTML to the client: ```typescript export default async function Post({ params }) { const data = await fetch('...') return{data.title}
}
```
Happy coding!