Files
klz-cables.com/.pnpm-store/v10/files/34/77984abc5af360922a6b47a5c7bbd2c2e4b3734e3c9193ec79c2d2877248991a446ed5a9e32ea5e02b249f1200f9047fcc4c592c2ae68ca8a636354583ad03
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

16 lines
502 B
Plaintext

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import { Fragment } from 'react';
import { asModal } from '../asModal/index.js';
const _Modal = (props) => {
const { children } = props;
if (children) {
if (typeof children === 'function') {
return (_jsx(Fragment, { children: children(props) }));
}
return (_jsx(Fragment, { children: children }));
}
return null;
};
export const Modal = asModal(_Modal);
//# sourceMappingURL=index.js.map