diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-18T13·58+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-18T13·58+0100 |
commit | 441fe3e32eb9c041515178f74564ede9fd24db72 (patch) | |
tree | 8264b2cdf597cf0063214818467f6f849661220a /website/sandbox/learnpianochords/src/Overview.elm | |
parent | ddbd7e2ef5eb52bf125480bad80ee753275d9827 (diff) |
Tidy app
Now that I have a deployed an MVP of my app, I am tidying things up to support the next phase of development. TL;DR: - Moved application Model-related code into State module - Moved each View into its own module - Deleted unused ChordInspector component - Deleted unused Msg's, {Increase,Decrease}Tempo - Deleted misc unused code
Diffstat (limited to 'website/sandbox/learnpianochords/src/Overview.elm')
-rw-r--r-- | website/sandbox/learnpianochords/src/Overview.elm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/website/sandbox/learnpianochords/src/Overview.elm b/website/sandbox/learnpianochords/src/Overview.elm new file mode 100644 index 000000000000..432477aa3bb9 --- /dev/null +++ b/website/sandbox/learnpianochords/src/Overview.elm @@ -0,0 +1,11 @@ +module Overview exposing (render) + +import Html exposing (..) +import Html.Attributes exposing (..) +import Html.Events exposing (..) +import State + + +render : State.Model -> Html State.Msg +render model = + div [] [ text "Hello, Overview" ] |