Skip to content

Instantly share code, notes, and snippets.

@jemgold
Last active June 10, 2016 16:25
Show Gist options
  • Save jemgold/79a468b77309e65d16921e2c0620084a to your computer and use it in GitHub Desktop.
Save jemgold/79a468b77309e65d16921e2c0620084a to your computer and use it in GitHub Desktop.
(defn view-book-list [book-list]
(->> book-list
(map view-book)
(div [ class "container" ])))
viewBookList bookList =
bookList
|> List.map viewBook
|> div [ class "container" ]
viewBookList bookList =
div
[ class "container" ]
(List.map viewBook bookList)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment