blob: 349f0ee78649d9c7d13af34ff62b78206d1e276d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import './index.css'
import {h, render} from 'preact'
import {App} from './app'
const root = document.getElementById('app')
if (!root) throw new Error('No root element')
render(<App />, root)
|