blob: f5bee0707bf9dc8c7220b26dc700403f52bba937 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import bean from 'bean';
import R from 'ramda';
import r from 'hatter/renderer';
import * as l from 'hatter/lenses';
import * as common from 'hatter/common';
import * as vt from 'hatter/vt';
import 'static!static/index.html';
import 'style/main.scss';
function main() {
let root = document.body.appendChild(document.createElement('div'));
r.init(root, common.defaultState, vt.main);
}
bean.on(window, 'load', main);
|