Skip to content

Instantly share code, notes, and snippets.

View gsambrotta's full-sized avatar

designbygio gsambrotta

View GitHub Profile
@gsambrotta
gsambrotta / Header.js
Created February 23, 2022 18:34
Tailwind React Hamburger Menu
// full code link: https://codesandbox.io/s/tailwind-react-hamburger-menu-tjhfyx
import { useState } from "react"; // import state
export default function Header() {
const [isNavOpen, setIsNavOpen] = useState(false); // initiate isNavOpen state with false
return (
<div className="flex items-center justify-between border-b border-gray-400 py-8">
<a href="/">