import { useState } from "react"; const Accordion = ({ title, children, className, }: { title: string; children: any; className: string | null; }) => { const [show, setShow] = useState(false); return (
setShow(!show)}> {title}
{children}
); }; export default Accordion;