Files
caravel/frontend/src/index.tsx
T

14 lines
293 B
TypeScript

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