Add router & other changes

This commit is contained in:
2025-07-17 13:56:53 -07:00
parent 04db244c97
commit bbdab2207a
7 changed files with 49 additions and 19 deletions

View File

@@ -1,9 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);
</React.StrictMode>
)