import React from "react"; import "./Footer.css"; const Footer = () => { const [isExpanded, setIsExpanded] = React.useState(false); const [isVisible, setIsVisible] = React.useState(false); const toggleExpand = () => { if(!isExpanded) { setIsVisible(true); } setIsExpanded((prev) => !prev); }; const onTransitionEnd = () => { if(!isExpanded) { setIsVisible(false); } }; return ( ); }; export default Footer;