This commit is contained in:
D8D Developer
2025-06-27 01:56:30 +00:00
parent 0ef1dd1484
commit b9a3c991d0
354 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
import { createRoot } from 'react-dom/client'
import Web_app from './web_app'
const rootElement = document.getElementById('root')
if (rootElement) {
const root = createRoot(rootElement)
root.render(
<Web_app />
)
}