Reset repository content

This commit is contained in:
2025-10-31 17:59:20 +01:00
parent 2f74c3b1a6
commit f7e1d1539f
60 changed files with 3665 additions and 18603 deletions

View File

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