import React, { useState } from 'react' import Link from 'next/link' import MobileMenu from '../MobileMenu/MobileMenu' const Header = (props) => { const [menuActive, setMenuState] = useState(false); const SubmitHandler = (e) => { e.preventDefault() } const ClickHandler = () => { window.scrollTo(10, 0); } return ( ) } export default Header;