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