From 08140112715a0316ca4b1e59da9d9a0d29065680 Mon Sep 17 00:00:00 2001 From: CSY54 <18496305+CSY54@users.noreply.github.com> Date: Mon, 4 Sep 2023 18:28:24 +0800 Subject: [PATCH] docs: add missing quotation mark --- .../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 319b8387ee87d..f860e471ffbc9 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 @@ -18,7 +18,7 @@ There are a couple of benefits to doing the rendering work on the client, includ To use Client Components, you can add the React [`"use client"` directive](https://react.dev/reference/react/use-client) at the top of a file, above your imports. -`"use client` is used to declare a [boundary](/docs/app/building-your-application/rendering#network-boundary) between a Server and Client Component modules. This means that by defining a `"use client"` in a file, all other modules imported into it, including child components, are considered part of the client bundle - and will be rendered by React on the client. +`"use client"` is used to declare a [boundary](/docs/app/building-your-application/rendering#network-boundary) between a Server and Client Component modules. This means that by defining a `"use client"` in a file, all other modules imported into it, including child components, are considered part of the client bundle - and will be rendered by React on the client. ```tsx filename="app/counter.tsx" highlight={1} switcher 'use client'