my blog https://overreacted.io
53
fork

Configure Feed

Select the types of activity you want to include in your feed.

typ

+3 -1
+3 -1
public/jsx-over-the-wire/index.md
··· 2412 2412 ```js 2413 2413 import { PostDetails, LikeButton } from './client'; 2414 2414 2415 - export async function PostDetailsRoute({ postId }) { 2415 + export function PostDetailsRoute({ postId }) { 2416 2416 return <Post postId={postId} /> 2417 2417 } 2418 2418 ··· 2474 2474 <Client glued> 2475 2475 2476 2476 ```js 2477 + 'use client'; 2478 + 2477 2479 export function PostLayout({ 2478 2480 postTitle, 2479 2481 postContent,