diff --git a/packages/react/lib/index.ts b/packages/react/lib/index.ts index a507740..47c4881 100644 --- a/packages/react/lib/index.ts +++ b/packages/react/lib/index.ts @@ -1,3 +1,4 @@ export * from "./vcn"; export * from "./Slot"; export * from "./ssrFallback"; +export * from "./withSSD"; diff --git a/packages/react/lib/withSSD.tsx b/packages/react/lib/withSSD.tsx new file mode 100644 index 0000000..0cc71ee --- /dev/null +++ b/packages/react/lib/withSSD.tsx @@ -0,0 +1,16 @@ +import type { ComponentType } from "react"; +import { ServerSideDocumentFallback } from "./ssrFallback"; + +function withServerSideDocument
( + Component: ComponentType
, +): ComponentType
{
+ return (props) => {
+ return (
+