Skip to content

Instantly share code, notes, and snippets.

@arecvlohe
Created April 23, 2017 01:07
Show Gist options
  • Save arecvlohe/171f85b9a22c442571f58ae42ccd313c to your computer and use it in GitHub Desktop.
Save arecvlohe/171f85b9a22c442571f58ae42ccd313c to your computer and use it in GitHub Desktop.
view: Model -> Html Msg
view model =
div []
[ div [] [ text model.author ]
, div [] [ text model.quote ]
, button [ onClick FetchQuote ] [ text "Fetch new quote" ]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment