feat: first commit

This commit is contained in:
devaine 2025-10-18 12:58:31 -05:00
commit ecb7899a97
No known key found for this signature in database
GPG key ID: 4BA6E50E8768348F
15 changed files with 6603 additions and 0 deletions

10
src/main.jsx Normal file
View file

@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)