Skip to content

Instantly share code, notes, and snippets.

@leojpod
Last active March 23, 2017 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leojpod/2b95e3ce1d1024d032731c565bdb038a to your computer and use it in GitHub Desktop.
Save leojpod/2b95e3ce1d1024d032731c565bdb038a to your computer and use it in GitHub Desktop.
Support code for the medium article about getting started with Elm
update msg model =
case msg of
NoOps ->
( model, Cmd.none )
BoardUpdate board ->
( { model | board = board }, Cmd.none )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment