feat: web frontend; middleware; serde (WIP?)
This commit is contained in:
10
frontend/src/index.tsx
Normal file
10
frontend/src/index.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
/* @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);
|
||||
Reference in New Issue
Block a user