Files
caravel/frontend/src/index.tsx
T
2026-02-27 21:26:45 -08:00

15 lines
330 B
TypeScript

/* @refresh reload */
import { render } from "solid-js/web"
import "./index.css"
import App from "./App"
import { PLATFORM_NAME, restoreAccounts } from "./lib/nostr"
const root = document.getElementById("root")!
document.title = PLATFORM_NAME
import("preline").then(() => {
restoreAccounts()
render(() => <App />, root)
})