Inital commit

This commit is contained in:
2026-04-20 00:24:00 +02:00
commit 1f21d857e4
23 changed files with 2591 additions and 0 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.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)