Skip to content

Instantly share code, notes, and snippets.

@Akii
Created November 28, 2018 22:33
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 Akii/e762b9c4c46b775ca4ca7fb058ddbd7b to your computer and use it in GitHub Desktop.
Save Akii/e762b9c4c46b775ca4ca7fb058ddbd7b to your computer and use it in GitHub Desktop.
itemView : Item -> Html Msg
itemView item =
tr []
[ td [ class "item-id" ] [ text ("#" ++ item.id) ]
, td [ class "item-name" ] [ text item.name ]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment