cong-react

This commit is contained in:
Dobromir Popov
2025-06-16 10:47:38 +03:00
parent 91285b4a4e
commit d8d6d8ef0e
13 changed files with 3586 additions and 0 deletions

View File

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