This commit is contained in:
Saahil dutta 2024-06-22 17:44:06 -04:00
parent b52e25d57f
commit f6167cb3e6
5 changed files with 45 additions and 3 deletions

View file

@ -10,6 +10,7 @@ import Navbar from './components/navbar';
import { runTitle } from './scripts/title';
import { startEvent } from './scripts/hashevent';
import { listenForEasterEgg } from './scripts/oneko_easteregg';
import Footer from './components/footer';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
@ -25,6 +26,7 @@ root.render(
<Navbar />
<App />
<Footer />
</React.StrictMode>
);