my blog https://overreacted.io
53
fork

Configure Feed

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

oops

authored by

dan and committed by
GitHub
6d96b287 891fbf29

+2 -2
+2 -2
public/jsx-over-the-wire/index.md
··· 2154 2154 props: { 2155 2155 postTitle: "JSX Over The Wire", 2156 2156 // ... 2157 - postLikes: { 2157 + children: { 2158 2158 type: "LikeButton", // ✅ This is a component on the client 2159 2159 props: { 2160 2160 totalLikeCount: 8, ··· 2247 2247 return <PostDetailsViewModel postId={postId} /> 2248 2248 } 2249 2249 2250 - async function PostListRouteViewModel({ postId }) { 2250 + async function PostListRouteViewModel() { 2251 2251 const postIds = await getRecentPostIds(); 2252 2252 return ( 2253 2253 <>