stream/index.js

7 lines
129 B
JavaScript

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