We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 403707e commit 93f3ea1Copy full SHA for 93f3ea1
apps/site/components/withNodeRelease.tsx
@@ -8,8 +8,9 @@ type WithNodeReleaseProps = {
8
children: FC<{ release: NodeRelease }>;
9
};
10
11
-// This is a React Server Component
12
-// Note that Hooks cannot be used in a React Server Component
+// This is a React Async Server Component
+// Note that Hooks cannot be used in a RSC async component
13
+// Async Components do not get re-rendered at all.
14
const WithNodeRelease: FC<WithNodeReleaseProps> = async ({
15
status: statuses,
16
children: Component,
0 commit comments