Files
klz-cables.com/.pnpm-store/v10/files/94/768b83ac6f0bf51abc9f2bfc7779ef0459ae1c88675a75b4a1c3bd7e63708783f205907e866f4fd57c9435911139fb9c34cb96f0564683f9a59cc5b7adf6dd
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

19 lines
567 B
Plaintext

import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import React from 'react';
import './index.scss';
const baseClass = 'no-results';
export function NoListResults({
Actions,
Message
}) {
return /*#__PURE__*/_jsxs("div", {
className: baseClass,
children: [Message, Actions && Actions.length > 0 && /*#__PURE__*/_jsx("div", {
className: `${baseClass}__actions`,
children: Actions.map((action, index) => /*#__PURE__*/_jsx(React.Fragment, {
children: action
}, index))
})]
});
}
//# sourceMappingURL=index.js.map