Pronouns labels on Bluesky
1/* @refresh reload */ 2import './index.css'; 3import { render } from 'solid-js/web'; 4 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!);