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

7 lines
351 B
Plaintext

import * as React from 'react';
type SectionProps = Readonly<React.ComponentPropsWithoutRef<"table">>;
declare const Section: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref">> & React.RefAttributes<HTMLTableElement>>;
export { Section, type SectionProps };