Skip to content

Instantly share code, notes, and snippets.

@drager
Created May 1, 2017 20:11
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 drager/699cd4c7a3f782e51fb0673881df0280 to your computer and use it in GitHub Desktop.
Save drager/699cd4c7a3f782e51fb0673881df0280 to your computer and use it in GitHub Desktop.
view : Model -> Html Msg
view model =
div []
[ (case model.weather of
Just value ->
case List.head value.value of
Just first ->
(case Date.fromString (toString (first.date)) of
Result.Ok date ->
formatDate date
Result.Err _ ->
""
)
Nothing ->
""
Nothing ->
""
)
|> text
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment