mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-13 06:05:34 +08:00
19 lines
297 B
TypeScript
19 lines
297 B
TypeScript
|
/* @refresh reload */
|
||
|
import 'solid-devtools'
|
||
|
import { render } from 'solid-js/web'
|
||
|
|
||
|
import { Router } from '@solidjs/router'
|
||
|
import { App } from './App'
|
||
|
import './index.css'
|
||
|
|
||
|
const root = document.getElementById('root')
|
||
|
|
||
|
render(
|
||
|
() => (
|
||
|
<Router>
|
||
|
<App />
|
||
|
</Router>
|
||
|
),
|
||
|
root!,
|
||
|
)
|