feat(lib): add withSSD
This commit is contained in:
parent
da628710a4
commit
98dd58febb
@ -1,3 +1,4 @@
|
|||||||
export * from "./vcn";
|
export * from "./vcn";
|
||||||
export * from "./Slot";
|
export * from "./Slot";
|
||||||
export * from "./ssrFallback";
|
export * from "./ssrFallback";
|
||||||
|
export * from "./withSSD";
|
||||||
|
16
packages/react/lib/withSSD.tsx
Normal file
16
packages/react/lib/withSSD.tsx
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
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 };
|
@ -4,7 +4,7 @@
|
|||||||
"components": "/packages/react/components/{componentName}",
|
"components": "/packages/react/components/{componentName}",
|
||||||
"lib": "/packages/react/lib/{libName}"
|
"lib": "/packages/react/lib/{libName}"
|
||||||
},
|
},
|
||||||
"lib": ["index.ts", "Slot.tsx", "vcn.ts", "ssrFallback.tsx"],
|
"lib": ["index.ts", "Slot.tsx", "vcn.ts", "ssrFallback.tsx", "withSSD.tsx"],
|
||||||
"components": {
|
"components": {
|
||||||
"button": { "type": "file", "name": "Button.tsx" },
|
"button": { "type": "file", "name": "Button.tsx" },
|
||||||
"checkbox": { "type": "file", "name": "Checkbox.tsx" },
|
"checkbox": { "type": "file", "name": "Checkbox.tsx" },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user