first test

This commit is contained in:
Tomas Dvorak
2026-02-08 14:14:55 +01:00
parent 18aa702174
commit d27cf14110
372 changed files with 98089 additions and 2585 deletions
+15
View File
@@ -0,0 +1,15 @@
import { render } from 'solid-js/web';
import { Router } from '@solidjs/router';
import App from './App';
const root = document.getElementById('root');
if (root) {
render(() => (
<Router>
<App />
</Router>
), root);
} else {
console.error('Root element not found');
}