import { defineComponent, mergeProps, useSSRContext } from "vue"; import { ssrRenderAttrs, ssrInterpolate } from "vue/server-renderer"; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "PainPointCard", __ssrInlineRender: true, props: { title: {}, desc: {} }, setup(__props) { return (_ctx, _push, _parent, _attrs) => { _push(`

${ssrInterpolate(__props.title)}

${ssrInterpolate(__props.desc)}

`); }; } }); const _sfc_setup = _sfc_main.setup; _sfc_main.setup = (props, ctx) => { const ssrContext = useSSRContext(); (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/PainPointCard.vue"); return _sfc_setup ? _sfc_setup(props, ctx) : void 0; }; export { _sfc_main as _ }; //# sourceMappingURL=PainPointCard-Lm1N0rdZ.js.map