import React, { useState } from "react"; import "../Style/Expandable.css" const ExpandableInfo = ({ details }) => { const [isExpanded, setIsExpanded] = useState(false); const toggleExpand = () => { setIsExpanded(!isExpanded); }; return (