Add base web UI
This commit is contained in:
1
remote_frontend/src/App.tsx
Normal file
1
remote_frontend/src/App.tsx
Normal file
@ -0,0 +1 @@
|
||||
export function App(): React.ReactElement {}
|
7
remote_frontend/src/index.css
Normal file
7
remote_frontend/src/index.css
Normal file
@ -0,0 +1,7 @@
|
||||
body {
|
||||
margin: 0;
|
||||
display: flex;
|
||||
place-items: center;
|
||||
min-width: 320px;
|
||||
min-height: 100vh;
|
||||
}
|
10
remote_frontend/src/main.tsx
Normal file
10
remote_frontend/src/main.tsx
Normal 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
1
remote_frontend/src/vite-env.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
/// <reference types="vite/client" />
|
Reference in New Issue
Block a user