8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import './styles/main.scss'
|
|
import { h, render } from 'preact'
|
|
import App from './components/app.tsx'
|
|
|
|
const state = typeof __STATE__ === 'undefined' ? { user: null } : __STATE__
|
|
|
|
render(h(App, { state }), document.body)
|