rtfeldman / elm-in-action

Resources for the Elm In Action book.
166 stars 33 forks source link

Typo in Listing 7.5 #46

Open kantuni opened 1 week ago

kantuni commented 1 week ago
div [ class "content" ]
    [ div [ class "selected-photo" ] [ selectedPhoto ] ]

should be

div [ class "content" ]
    [ selectedPhoto ]

Otherwise, the DOM structure looks like this

<div class="selected-photo">
  <div class="selected-photo">
    ...
  </div>
</div>