first commit

This commit is contained in:
Christian
2025-11-26 19:24:05 -03:00
commit 6e761464a6
25 changed files with 2103 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import { StrictMode } from 'react'
const rootElement = document.getElementById('root')
if (!rootElement.innerHTML) {
const root = ReactDOM.createRoot(rootElement)
root.render(
<StrictMode>
<App />
</StrictMode>,
)
}