initial commit

This commit is contained in:
2026-05-25 21:28:57 +02:00
parent da17a370c4
commit ecaa160826
26 changed files with 4904 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.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)