Initial commit

This commit is contained in:
2026-03-01 13:13:04 +01:00
commit 89e7e914f6
11 changed files with 1513 additions and 0 deletions

15
src/index.tsx Normal file
View File

@@ -0,0 +1,15 @@
/* @refresh reload */
import { render } from 'solid-js/web';
import 'solid-devtools';
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!);