stream/index.js
2021-03-05 13:17:51 +01:00

7 lines
129 B
JavaScript

import { h, render } from 'preact'
import App from './app'
const AppEl = document.getElementById('app')
render(<App />, AppEl)