fix: add displayName on withServerSideDocument
This commit is contained in:
parent
7251bf2400
commit
13cc43de2e
@ -4,13 +4,15 @@ import { ServerSideDocumentFallback } from "./ssrFallback";
|
||||
function withServerSideDocument<P extends {}>(
|
||||
Component: ComponentType<P>,
|
||||
): ComponentType<P> {
|
||||
return (props) => {
|
||||
const SSDocumentFallbackWrapper = (props: P) => {
|
||||
return (
|
||||
<ServerSideDocumentFallback>
|
||||
<Component {...props} />
|
||||
</ServerSideDocumentFallback>
|
||||
);
|
||||
};
|
||||
|
||||
return SSDocumentFallbackWrapper;
|
||||
}
|
||||
|
||||
export { withServerSideDocument };
|
||||
|
Loading…
x
Reference in New Issue
Block a user