ServerComponent type
Unanswered
Ryota Murakami posted this in #help-forum
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.