Migrate to native Node.js file access and improve UI

This commit is contained in:
proteriax
2021-11-08 02:59:58 -05:00
parent 06e29eaba1
commit eb27e81d68
21 changed files with 472 additions and 156 deletions

View File

@ -4,6 +4,10 @@ import { App } from "./App"
import { LocaleContextProvider } from "./i18n"
import "./index.scss"
if (navigator.platform === "MacIntel") {
document.documentElement.classList.add("mac")
}
render(
<React.StrictMode>
{/* <TitleBar /> */}
@ -11,5 +15,5 @@ render(
<App />
</LocaleContextProvider>
</React.StrictMode>,
document.getElementById("root")
document.getElementById("app")
)