Files
klz-cables.com/.pnpm-store/v10/files/7c/093bf20f4f7c30e3f14892bac3a85f7bc00498cef31bc9c96af437f63506b17998a2c29e78e7c30d43d9ed317a3aeee2d4314588e6b152810def5f305eee49
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
418 B
Plaintext

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import React, { createContext, use } from 'react';
export const OperationContext = /*#__PURE__*/createContext('');
export const OperationProvider = ({
children,
operation
}) => /*#__PURE__*/_jsx(OperationContext, {
value: operation,
children: children
});
export const useOperation = () => use(OperationContext);
//# sourceMappingURL=index.js.map