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

16 lines
629 B
Plaintext

import type { ImportMap, PayloadComponent } from 'payload';
import React from 'react';
type RenderServerComponentFn = (args: {
readonly clientProps?: object;
readonly Component?: PayloadComponent | PayloadComponent[] | React.ComponentType | React.ComponentType[];
readonly Fallback?: React.ComponentType;
readonly importMap: ImportMap;
readonly key?: string;
readonly serverProps?: object;
}) => React.ReactNode;
/**
* Can be used to render both MappedComponents and React Components.
*/
export declare const RenderServerComponent: RenderServerComponentFn;
export {};
//# sourceMappingURL=index.d.ts.map