6 lines
204 B
TypeScript
6 lines
204 B
TypeScript
|
// @refresh reload
|
||
|
import { mount, StartClient } from "@solidjs/start/client";
|
||
|
|
||
|
// biome-ignore lint/style/noNonNullAssertion: <explanation>
|
||
|
mount(() => <StartClient />, document.getElementById("app")!);
|