import { useState } from "preact/hooks"; export default function Navbar(){ const [navbar, setNavbar] = useState(false); return ( ) }