stream/index.js

7 lines
129 B
JavaScript
Raw Normal View History

2021-03-05 12:17:51 +00:00
import { h, render } from 'preact'
import App from './app'
const AppEl = document.getElementById('app')
render(<App />, AppEl)