import React from "react"; import { IoBug, IoHeart } from "react-icons/io5"; import { Button } from ".."; import * as Styled from "./index.styled"; export function Footer() { const showDebugButton = location.hostname == "localhost" || location.port == "3000"; const [showDebugMenu, setShowDebugMenu] = React.useState(false); const toggleDebugMenu = React.useCallback(() => { setShowDebugMenu(show => !show) }, []); const clearLocalStorage = React.useCallback(() => { localStorage.clear(); location.reload(); }, []); return ( ); }