Initialize vite project

This commit is contained in:
2025-09-09 08:53:06 +02:00
committed by Mathias Wagner
parent 756d96c8de
commit a95b1d7956
8 changed files with 1853 additions and 0 deletions

10
webui/src/App.jsx Normal file
View File

@@ -0,0 +1,10 @@
const App = () => {
return (
<>
<h1>vite init</h1>
</>
)
}
export default App;

9
webui/src/main.jsx Normal file
View File

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