Format backend, tweak frontend

This commit is contained in:
Jon Staab
2026-02-27 21:26:45 -08:00
parent a3f00aab37
commit e87eb0c30d
14 changed files with 289 additions and 83 deletions
+3 -1
View File
@@ -2,10 +2,12 @@
import { render } from "solid-js/web"
import "./index.css"
import App from "./App"
import { restoreAccounts } from "./lib/nostr"
import { PLATFORM_NAME, restoreAccounts } from "./lib/nostr"
const root = document.getElementById("root")!
document.title = PLATFORM_NAME
import("preline").then(() => {
restoreAccounts()
render(() => <App />, root)