import React from "react"; import { X, Info } from "react-feather"; const Footer = (props: { connecting: boolean; show: boolean; toggleHide: () => void; link: string; }) => { const { show, link } = props; if (!show) return ( props.toggleHide()} /> ); return (
props.toggleHide()} /> If you find this place useful,{" "} send some tokens and a message with ideas {" "} to make it even better.
); }; export default Footer;