blob: 1c4dea3a7adbd78700381b616b31041e588d0d72 (
plain)
1
2
3
4
5
6
7
8
9
|
import h from 'lib/h'
import * as sequencer from 'view/sequencer'
let view = h('main', {},
h('h1', { className: 'g-Title' }, 'Drum'),
sequencer.view()
)
document.body.appendChild(view)
|