diff --git a/docs/01-getting-started/03-react-essentials.mdx b/docs/01-getting-started/03-react-essentials.mdx index 7bc2d39399dd8..859f771387f17 100644 --- a/docs/01-getting-started/03-react-essentials.mdx +++ b/docs/01-getting-started/03-react-essentials.mdx @@ -290,7 +290,7 @@ export default function ExampleClientComponent({ children }) { Now, `` has no knowledge of what `children` is. It doesn't know that `children` will eventually be filled in by the result of a Server Component. -The only responsibility `ExampleClientComponent` has is to decide where whatever `children` will eventually be should be placed. +The only responsibility `ExampleClientComponent` has is to decide where whatever `children` will eventually be placed. In a parent Server Component, you can import both the `` and `` and pass `` as a child of ``: