Files
klz-cables.com/.pnpm-store/v10/files/8c/022848f4fea9f0d2df6c6624e4a021a1a10c6a817bffac8ead2840e518c2f8fc5a9766165932c5fa0e723627b896b4839653eaa79d4f3a088a67c949865bf4
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

14 lines
490 B
Plaintext

import React, { Fragment } from 'react';
import { useScrollInfo } from '../useScrollInfo/index.js';
export const ScrollInfo = (props) => {
const { children } = props;
const scrollInfo = useScrollInfo();
if (children) {
if (typeof children === 'function') {
return (React.createElement(Fragment, null, children(scrollInfo)));
}
return (React.createElement(Fragment, null, children));
}
return null;
};
//# sourceMappingURL=index.js.map