Files
klz-cables.com/.pnpm-store/v10/files/1b/bdb9584294710367e7ad75cd296306e3f7b1ec08c1d79478315183ca95ebdf7fe0a0db3f90bae61ab841ce5a926fafd46654acd78f9334d46d742c7e127d02
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

15 lines
504 B
Plaintext

'use client';
import React, { Fragment } from 'react';
import { useWindowInfo } from '../useWindowInfo/index.js';
export const WindowInfo = (props) => {
const { children } = props;
const windowInfo = useWindowInfo();
if (children) {
if (typeof children === 'function') {
return (React.createElement(Fragment, null, children(windowInfo)));
}
return (React.createElement(Fragment, null, children));
}
return null;
};
//# sourceMappingURL=index.js.map