Files
klz-cables.com/.pnpm-store/v10/files/85/f925d2a833a29acdf24dc8f2d27fc183f97e79d274a290c0c83437cc8c21cf540ad3e9063ef2a0c5700a32ed7419a7771315ab3bf45d5e0381f35d0b0d3b76
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

11 lines
430 B
Plaintext

'use client';
import React from 'react';
import { useWindowInfo } from '../useWindowInfo/index.js';
export const withWindowInfo = (PassedComponent) => {
const WindowInfoWrap = (props) => {
const windowInfoContext = useWindowInfo();
return (React.createElement(PassedComponent, Object.assign({}, props, { windowInfo: windowInfoContext })));
};
return WindowInfoWrap;
};
//# sourceMappingURL=index.js.map