diff options
Diffstat (limited to 'picarones-elm/src/Display.elm')
-rw-r--r-- | picarones-elm/src/Display.elm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/picarones-elm/src/Display.elm b/picarones-elm/src/Display.elm new file mode 100644 index 0000000..20fcfe7 --- /dev/null +++ b/picarones-elm/src/Display.elm @@ -0,0 +1,32 @@ +module Display exposing (..) + +import Browser +import Html exposing (Html, button, div, text, br, input, img) +import Html.Attributes exposing (style, class, value, placeholder, src) +import Html.Events exposing (onInput, onClick) +import Html.Lazy exposing (lazy) +import List exposing (foldr) + +import Main exposing (..) + +main = Browser.document + { init = init + , update = update + , view = view + , subscriptions = subscriptions + } + + +{- VIEW COMPONENTS -} + + -- our body consists of a slide container and a couple controls +body : Model -> Html Msg +body model = div [class "display"] (slideView model.slide model.max model.prefix) + + +view : Model -> Browser.Document Msg +view model = { title = "Picarones" + , body = [body model] + } + + |