add web interface example

This commit is contained in:
croissant
2025-11-02 20:06:49 +01:00
committed by Michel Aractingi
parent e2c00f6ed8
commit fff719cb4f
10 changed files with 4088 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { createRoot } from 'react-dom/client'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<App />
)