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