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