Files
brk/app/src/index.tsx
2024-06-24 05:14:52 +02:00

17 lines
389 B
TypeScript

/* @refresh reload */
import { render } from "solid-js/web";
import "./styles.css";
import { App } from "./app";
const root = document.getElementById("root");
if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
throw new Error(
"Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?",
);
}
render(App, root!);