Add web interface and tests
This commit is contained in:
12
packages/web/src/main.tsx
Normal file
12
packages/web/src/main.tsx
Normal 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")
|
||||
)
|
Reference in New Issue
Block a user