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 @@
export function App(): React.ReactElement {}

View File

@ -0,0 +1,7 @@
body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
}

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>
);

1
remote_frontend/src/vite-env.d.ts vendored Normal file
View File

@ -0,0 +1 @@
/// <reference types="vite/client" />