This commit is contained in:
nikita
2026-06-12 00:37:44 +03:00
parent cab49d9998
commit c8bc9b8347
19 changed files with 3430 additions and 1 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>,
)