Add web interface and tests

This commit is contained in:
aet
2021-11-05 03:17:18 -04:00
parent 7f41a50fb1
commit fe926be0a6
66 changed files with 3390 additions and 1275 deletions

12
packages/web/src/main.tsx Normal file
View File

@ -0,0 +1,12 @@
import React from "react"
import { render } from "react-dom"
import { App } from "./App"
import "./index.scss"
render(
<React.StrictMode>
{/* <TitleBar /> */}
<App />
</React.StrictMode>,
document.getElementById("root")
)