its for when you want to get like notifications for your reposts
1/* @refresh reload */
2import { render } from "solid-js/web";
3import "solid-devtools";
4
5import App from "./App.tsx";
6
7import "./index.css";
8import "virtual:uno.css";
9
10const root = document.getElementById("root");
11
12if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
13 throw new Error(
14 "Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?",
15 );
16}
17
18render(() => <App />, root!);