changed front end stack

This commit is contained in:
2025-01-09 16:29:36 -06:00
parent f67d00c921
commit 9a22067ead
30 changed files with 1748 additions and 4387 deletions
+10
View File
@@ -0,0 +1,10 @@
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>,
)