Files
klz-cables.com/.pnpm-store/v10/files/47/23ab4895a580617a8e0e1ee0c8ef2924d00071aed83568fc0eb2ba031e342f8b6fd6d460926f1ab82ec407777f307ec20789e118b54b2362e2828d057a94cb
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
359 B
Plaintext

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