feat(lib): add withSSD

This commit is contained in:
p-sw 2024-07-12 01:25:10 +09:00
parent da628710a4
commit 98dd58febb
3 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,4 @@
export * from "./vcn";
export * from "./Slot";
export * from "./ssrFallback";
export * from "./withSSD";

View 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 };

View File

@ -4,7 +4,7 @@
"components": "/packages/react/components/{componentName}",
"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": {
"button": { "type": "file", "name": "Button.tsx" },
"checkbox": { "type": "file", "name": "Checkbox.tsx" },