about summary refs log tree commit diff
path: root/website/sandbox/learnpianochords/src/ChordInspector.elm
diff options
context:
space:
mode:
Diffstat (limited to 'website/sandbox/learnpianochords/src/ChordInspector.elm')
-rw-r--r--website/sandbox/learnpianochords/src/ChordInspector.elm15
1 files changed, 0 insertions, 15 deletions
diff --git a/website/sandbox/learnpianochords/src/ChordInspector.elm b/website/sandbox/learnpianochords/src/ChordInspector.elm
deleted file mode 100644
index f43b534eb013..000000000000
--- a/website/sandbox/learnpianochords/src/ChordInspector.elm
+++ /dev/null
@@ -1,15 +0,0 @@
-module ChordInspector exposing (render)
-
-import Html exposing (..)
-import NoteInspector
-import Theory
-
-
-render : Theory.Chord -> Html a
-render chord =
-    case Theory.notesForChord chord of
-        Nothing ->
-            p [] [ text "Cannot retrieve the notes for the chord." ]
-
-        Just notes ->
-            NoteInspector.render notes