diff --git a/src/main.tsx b/src/main.tsx index bceb2e1..27fb3c4 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -3,12 +3,16 @@ import ReactDOM from "react-dom/client"; import { createBrowserHistory } from "history"; import { App } from "./App"; -const renderResistants = () => +console.log("Starting app"); + +const renderResistants = () => { + console.log("Rendering app"); ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( ); +}; const browserHistory = createBrowserHistory(); browserHistory.listen(() => { @@ -17,3 +21,5 @@ browserHistory.listen(() => { }); renderResistants(); + +console.log("done");