blob: 0bfe1b93cf33ab40f36b83827232a5b3d3d8b9a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* @refresh reload */
import 'solid-devtools';
import './index.css';
import { render, Suspense } from 'solid-js/web';
import App from './app';
import { Router } from '@solidjs/router';
import { routes } from './routes';
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(
() => <Router root={(props) => <App>{props.children}</App>}>{routes}</Router>,
root!,
);
|