Created
November 28, 2018 22:33
-
-
Save Akii/e762b9c4c46b775ca4ca7fb058ddbd7b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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