aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts
new file mode 100644
index 0000000..16d4bb5
--- /dev/null
+++ b/src/main.ts
@@ -0,0 +1,9 @@
+import h from 'lib/h'
+import * as sequencer from 'view/sequencer'
+
+let view = h('main', {},
+ h('h1', { className: 'g-Title' }, 'Metronome'),
+ sequencer.view()
+)
+
+document.body.appendChild(view)