mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-19 06:54:23 +01:00
initial
This commit is contained in:
15
src/index.tsx
Normal file
15
src/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
/* @refresh reload */
|
||||
import { render } from 'solid-js/web';
|
||||
import { Router } from '@solidjs/router';
|
||||
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
|
||||
render(
|
||||
() => (
|
||||
<Router base={import.meta.env.BASE_URL}>
|
||||
<App />
|
||||
</Router>
|
||||
),
|
||||
document.getElementById('root') as HTMLElement,
|
||||
);
|
||||
Reference in New Issue
Block a user