6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
|
import { render } from 'preact'
|
||
|
import { App } from './app.tsx'
|
||
|
import './index.css'
|
||
|
|
||
|
render(<App />, document.getElementById('app')!)
|