diff options
author | Ben Sima <ben@bsima.me> | 2019-03-27 09:25:12 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-03-27 09:25:35 -0700 |
commit | 77ff3088b9c8ff217c6ed6fb9093a5aabb2ea3ca (patch) | |
tree | 2ce318b75ed5b1d01827fca8a7a373f7888f0417 /lore/Biz/Ibb/Move.hs | |
parent | cfd213917c766c91f4c5fc7fdc91c2ca0ea13c26 (diff) |
working miso app
structure is in place, need to add styles and logic
Diffstat (limited to 'lore/Biz/Ibb/Move.hs')
-rw-r--r-- | lore/Biz/Ibb/Move.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lore/Biz/Ibb/Move.hs b/lore/Biz/Ibb/Move.hs new file mode 100644 index 0000000..9ff9b34 --- /dev/null +++ b/lore/Biz/Ibb/Move.hs @@ -0,0 +1,12 @@ + +-- | App update logic +module Biz.Ibb.Move ( + module X + , move + ) where + +import Biz.Ibb.Core as X +import Miso + +move :: Action -> Model -> Effect Action Model +move Nop m = undefined |