aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
authorJoris2022-06-11 16:42:33 +0200
committerJoris2022-06-11 16:42:33 +0200
commit03197b1ab992540b951fcbc6f841cfcd42a757f3 (patch)
tree2eb5277462b8dfef41e901a945f251725fb7ad8f /src/main.ts
parent70c672535f36edaeaf1d63d4637830b564271c34 (diff)
Add kick sequencer
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)