Files
klz-cables.com/.pnpm-store/v10/files/56/abddd8098e1b3418483c19bd8ac0c71f08ba038fe0ee4609263afaa0695d0f050ebbb434ec6fc9de578c92770782e03031740aa1e89ed70c02bb15d8e4361f
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
479 B
Plaintext

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import React, { lazy, Suspense } from 'react';
import { ShimmerEffect } from '../ShimmerEffect/index.js';
const LazyEditor = /*#__PURE__*/lazy(() => import('./CodeEditor.js'));
export const CodeEditor = props => {
return /*#__PURE__*/_jsx(Suspense, {
fallback: /*#__PURE__*/_jsx(ShimmerEffect, {}),
children: /*#__PURE__*/_jsx(LazyEditor, {
...props
})
});
};
//# sourceMappingURL=index.js.map