8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
// @refresh reload
|
|
import { mount, StartClient } from "@solidjs/start/client"
|
|
|
|
const root = document.getElementById("app")
|
|
if (!root) throw new Error("Root element #app not found")
|
|
|
|
mount(() => <StartClient />, root)
|