mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-04 12:32:58 +00:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
/* @refresh reload */
|
|
import { render } from 'solid-js/web'
|
|
import '@unocss/reset/tailwind.css'
|
|
import 'uno.css'
|
|
import './index.css'
|
|
import App from './App.tsx'
|
|
|
|
const root = document.getElementById('root')
|
|
|
|
render(() => <App />, root!)
|