chore: add webapp node_modules dependencies.

This commit is contained in:
2026-02-14 17:28:26 -05:00
parent 7960320004
commit 91e7af0c04
15 changed files with 5217 additions and 0 deletions

10
webapp/src/main.jsx Normal file
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>,
)