entry-client.tsx 217 B

1234567
  1. // @refresh reload
  2. import { mount, StartClient } from "@solidjs/start/client"
  3. const root = document.getElementById("app")
  4. if (!root) throw new Error("Root element #app not found")
  5. mount(() => <StartClient />, root)