chore(docs): correct subject-verb conjugation in Client Components doc (#60538)

This commit is contained in:
Jacob Smith 2024-01-11 23:03:52 +01:00 committed by GitHub
parent 2138facc12
commit e07161a563
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.