Added code

This commit is contained in:
phoenix
2025-07-27 15:57:13 -04:00
parent e151448663
commit 347bbd6e77
11 changed files with 245 additions and 2 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.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)