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