repo setup

This commit is contained in:
Nicola Malizia
2025-10-10 17:41:56 +02:00
commit 787adc2ba6
25 changed files with 3428 additions and 0 deletions

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>,
)