From e07161a563248b5e4430517b80607b60a99f5ef0 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Thu, 11 Jan 2024 23:03:52 +0100 Subject: [PATCH] chore(docs): correct subject-verb conjugation in Client Components doc (#60538) --- .../03-rendering/02-client-components.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/01-building-your-application/03-rendering/02-client-components.mdx b/docs/02-app/01-building-your-application/03-rendering/02-client-components.mdx index 3f6bd3e5f7..7373678f08 100644 --- a/docs/02-app/01-building-your-application/03-rendering/02-client-components.mdx +++ b/docs/02-app/01-building-your-application/03-rendering/02-client-components.mdx @@ -3,7 +3,7 @@ title: Client Components description: Learn how to use Client Components to render parts of your application on the client. --- -Client Components allows you to write interactive UI that can be rendered on the client at request time. In Next.js, client rendering is **opt-in**, meaning you have to explicitly decide what components React should render on the client. +Client Components allow you to write interactive UI that can be rendered on the client at request time. In Next.js, client rendering is **opt-in**, meaning you have to explicitly decide what components React should render on the client. This page will go through how Client Components work, how they're rendered, and when you might use them.