Skip to content

Instantly share code, notes, and snippets.

@wellyal
Created October 11, 2018 22:37
Show Gist options
  • Save wellyal/76b76d42bb389025507c4b2555f9a5a5 to your computer and use it in GitHub Desktop.
Save wellyal/76b76d42bb389025507c4b2555f9a5a5 to your computer and use it in GitHub Desktop.
port module Buttons exposing (main)
import Html exposing (Html, button, div, text)
import Html.Events exposing (onClick)
main =
Html.beginnerProgram { model = model, view = view, update = update }
-- MODEL
type alias Model =
Int
model : Model
model =
0
-- UPDATE
type Msg
= Increment
| Decrement
update : Msg -> Model -> Model
update msg model =
case msg of
Increment ->
model + 1
Decrement ->
model - 1
-- VIEW
view : Model -> Html Msg
view model =
div []
[ button [ onClick Decrement ] [ text "-" ]
, div [] [ text (toString model) ]
, button [ onClick Increment ] [ text "+" ]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment