Add base web UI

This commit is contained in:
2024-04-29 20:53:01 +02:00
parent f6e391e52c
commit 955067ad9c
14 changed files with 3459 additions and 2 deletions

View File

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