elm-init-0.1.0.1: resources/Main.elm
module Main where
-- MODEL
type alias Model = { }
-- UPDATE
type Action = Reset
update : Action -> Model -> Model
update action model =
case action of
Reset -> model
-- VIEW
view : Model -> Html
view model = div [] []