Next.js Discord

Discord Forum

ServerComponent type

Unanswered
Ryota Murakami posted this in #help-forum
Open in Discord
declare module 'react' {
  type ServerComponent<P = {}> =
    | Promise<FunctionComponent<P>>
    | FunctionComponent<P>
}


I have defined a custom Type for ServerComponent, but I would like to know if you have a more precise idea.

0 Replies