Files
klz-cables.com/.pnpm-store/v10/files/ef/0367bb2db067e824dfd28073f4e478d0fd810add1b7874df7da07900486076f9d2b1269a4a42a21c7eee0569aace3ca0a00f440e35881e2e58ba812765ef78
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
497 B
Plaintext

import React, { Component } from "react";
interface MonthDropdownOptionsProps {
onCancel: VoidFunction;
onChange: (month: number) => void;
month: number;
monthNames: string[];
}
export default class MonthDropdownOptions extends Component<MonthDropdownOptionsProps> {
isSelectedMonth: (i: number) => boolean;
renderOptions: () => React.ReactElement[];
onChange: (month: number) => void;
handleClickOutside: () => void;
render(): React.ReactElement;
}
export {};