17 lines
394 B
TypeScript
17 lines
394 B
TypeScript
import type { ComponentType } from "react";
|
|
import { ServerSideDocumentFallback } from "./ssrFallback";
|
|
|
|
function withServerSideDocument<P extends {}>(
|
|
Component: ComponentType<P>,
|
|
): ComponentType<P> {
|
|
return (props) => {
|
|
return (
|
|
<ServerSideDocumentFallback>
|
|
<Component {...props} />
|
|
</ServerSideDocumentFallback>
|
|
);
|
|
};
|
|
}
|
|
|
|
export { withServerSideDocument };
|