import type { ComponentType } from "react"; import { ServerSideDocumentFallback } from "./ssrFallback"; function withServerSideDocument
( Component: ComponentType
, ): ComponentType
{ const SSDocumentFallbackWrapper = (props: P) => { return ( ); }; return SSDocumentFallbackWrapper; } export { withServerSideDocument };