import { useState } from "react"; const Nav = ({ page }) => { const [showMenu, setShowMenu] = useState(false); const [showMobileMenu, setShowMobileMenu] = useState(false); return ( ); } export default Nav;