@prokodo/ui
Version:
UI components for production-grade Next.js + Headless CMS (Strapi, Contentful, Headless WordPress) websites by prokodo – built for Core Web Vitals & SEO.
16 lines (15 loc) • 577 B
JavaScript
"use client";
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
import { createLazyWrapper } from "../../helpers/createLazyWrapper.js";
import BaseLinkClient from "./BaseLink.client.js";
import BaseLinkServer from "./BaseLink.server.js";
const BaseLink_lazy = createLazyWrapper({
name: "BaseLink",
Client: BaseLinkClient,
Server: BaseLinkServer,
isInteractive: /* @__PURE__ */ __name((p) => typeof p.linkComponent === "function", "isInteractive")
});
export {
BaseLink_lazy as default
};