rsnext/errors/react-client-hook-in-server-component.mdx
Delba de Oliveira 44d1a1cb15
docs: Migrate error messages to MDX and App Router. (#52038)
This PR is part of a larger effort to migrate error messages to MDX and
use App Router: https://github.com/vercel/front/pull/23459
2023-07-05 06:11:16 -07:00

43 lines
795 B
Text

---
title: React client hook in Server Component
---
## Why This Error Occurred
You are using a React client hook in a Server Component.
## Possible Ways to Fix It
Mark the component using the hook as a Client Component by adding `'use client'` at the top of the file.
##### Before
```jsx filename="app/example.js"
import { useEffect } from 'react'
export default function Example() {
useEffect(() => {
console.log('in useEffect')
})
return <p>Hello world</p>
}
```
##### After
```jsx filename="app/example.js"
'use client'
import { useEffect } from 'react'
export default function Example() {
useEffect(() => {
console.log('in useEffect')
})
return <p>Hello world</p>
}
```
## Useful Links
[Server and Client Components](/docs/getting-started/react-essentials)