reinit
ci-front / build (push) Has been cancelled

This commit is contained in:
2026-04-03 19:42:32 +03:00
parent 2e6b03cbf2
commit 81cb296ad4
17 changed files with 1361 additions and 390 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>,
)