We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6885965 commit 32ea9f1Copy full SHA for 32ea9f1
src/blog/react-server-components.md
@@ -272,7 +272,10 @@ const getPost = createServerFn().handler(async ({ data }) => {
272
273
{/* Slot: server requests client UI here */}
274
<footer>
275
- {props.renderPostActions?.({ postId: post.id, authorId: post.authorId })}
+ {props.renderPostActions?.({
276
+ postId: post.id,
277
+ authorId: post.authorId,
278
+ })}
279
</footer>
280
281
{/* Slot: client fills this with children */}
0 commit comments