14 lines
293 B
TypeScript
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/state"
|
|
|
|
const root = document.getElementById("root")!
|
|
|
|
document.title = PLATFORM_NAME
|
|
|
|
import("preline").then(() => {
|
|
render(() => <App />, root)
|
|
})
|