Re-initialize app using vite.

This commit is contained in:
Jay
2025-06-14 10:43:58 -04:00
commit 6d2f6661eb
40 changed files with 5895 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)