function Nav() { const [open, setOpen] = React.useState(false); const close = () => setOpen(false); return ( ); } window.Nav = Nav;