Skip to content

Commit

Permalink
Fixed grammar in 03-react-essentials.mdx (#52597)
Browse files Browse the repository at this point in the history
"will eventually be should be placed" was changed to "will eventually be placed".
  • Loading branch information
Fernand committed Jul 12, 2023
1 parent 3c3f50d commit 1989f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/01-getting-started/03-react-essentials.mdx
Expand Up @@ -290,7 +290,7 @@ export default function ExampleClientComponent({ children }) {

Now, `<ExampleClientComponent>` 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 `<ExampleClientComponent>` and `<ExampleServerComponent>` and pass `<ExampleServerComponent>` as a child of `<ExampleClientComponent>`:

Expand Down

0 comments on commit 1989f49

Please sign in to comment.