"use client"; import { useState } from "react"; interface ExpandableSectionProps { title: string; children: React.ReactNode; defaultOpen?: boolean; } export function ExpandableSection({ title, children, defaultOpen = false, }: ExpandableSectionProps) { const [open, setOpen] = useState(defaultOpen); return (