Skip to content

Instantly share code, notes, and snippets.

@jasdeepkhalsa
Created July 21, 2019 18:26
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 jasdeepkhalsa/b50d8f2b1c03c5a75dc1221d241d96af to your computer and use it in GitHub Desktop.
Save jasdeepkhalsa/b50d8f2b1c03c5a75dc1221d241d96af to your computer and use it in GitHub Desktop.
Elm starter template from https://guide.elm-lang.org/architecture/
import Html exposing (..)
-- MODEL
type alias Model = { ... }
-- UPDATE
type Msg = Reset | ...
update : Msg -> Model -> Model
update msg model =
case msg of
Reset -> ...
...
-- VIEW
view : Model -> Html Msg
view model =
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment