initial commit

This commit is contained in:
2025-07-08 11:16:51 -07:00
commit a0f2f63e6e
30 changed files with 5501 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Provider } from "./components/ui/provider"
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<Provider>
<App />
</Provider>
</StrictMode>,
)