import { useState } from 'react' import { HamburgerIcon } from './HamburgerIcon' import { BrandLogo } from './BrandLogo' import { Navigation } from './Navigation' export const Header: React.FC = () => { const [isActive, setIsActive] = useState(false) const handleToggleNavbar = (): void => { setIsActive(!isActive) } return ( <>
) }