/* eslint-disable */ const Footer = () => ( ); const App = () => { const [active, setActive] = React.useState("sobre"); const jump = (id) => { setActive(id); const el = document.getElementById(id); if (el) { window.scrollTo({ top: el.offsetTop - 72, behavior: "smooth" }); } }; return ( <> > ); }; const root = ReactDOM.createRoot(document.getElementById("root")); root.render();