diff options
Diffstat (limited to 'src/view/layout.ts')
-rw-r--r-- | src/view/layout.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/view/layout.ts b/src/view/layout.ts deleted file mode 100644 index ac62290..0000000 --- a/src/view/layout.ts +++ /dev/null @@ -1,13 +0,0 @@ -import h from 'lib/h' -import * as dom from 'lib/dom' -import * as form from 'view/form' - -export function view(main: Element): Element[] { - return [ - h('header', - { onclick: () => dom.show(form.view()) }, - 'Chords' - ), - main - ] -} |