title |
---|
createContext in a Server Component |
You are using createContext
in a Server Component but it only works in Client Components.
Mark the component using createContext
as a Client Component by adding 'use client'
at the top of the file.
import { createContext } from 'react'
const Context = createContext()
'use client'
import { createContext } from 'react'
const Context = createContext()