Sacha VAUDEY a63d9f4797
Some checks failed
Build / build-check (pull_request) Failing after 1m30s
add new UI
2025-09-14 11:24:59 +02:00

10 lines
228 B
TypeScript

// Re-export types from their specific modules
export type { Service } from './service';
export interface AccordionItemProps {
title: React.ReactNode;
children: React.ReactNode;
isOpen: boolean;
onToggle: () => void;
}