Switch away from nonboard for nostr login

This commit is contained in:
Jon Staab
2026-02-26 08:57:47 -08:00
parent 4e4d5907bf
commit 58d3036d31
7 changed files with 368 additions and 46 deletions
+2
View File
@@ -2,9 +2,11 @@
import { render } from "solid-js/web"
import "./index.css"
import App from "./App"
import { restoreAccounts } from "./lib/nostr"
const root = document.getElementById("root")!
import("preline").then(() => {
restoreAccounts()
render(() => <App />, root)
})