Files
mylinspirer/frontend/src/index.tsx

11 lines
247 B
TypeScript

/* @refresh reload */
import { render } from 'solid-js/web';
import App from './App';
import './styles/index.css';
const root = document.getElementById('root');
if (!root) throw new Error('Root element not found');
render(() => <App />, root);