UNPKG

next-sanity

Version:
13 lines (12 loc) 448 B
"use client"; import { Suspense, lazy } from "react"; import { jsx } from "react/jsx-runtime"; const NextStudioClientComponent = lazy(() => import("../../NextStudio.js")); function NextStudioLazyClientComponent(props) { return /* @__PURE__ */ jsx(Suspense, { fallback: null, children: /* @__PURE__ */ jsx(NextStudioClientComponent, { ...props }) }); } export { NextStudioLazyClientComponent as NextStudio }; //# sourceMappingURL=index.js.map