rtfeldman / elm-in-action

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

Browser import is missing in Listing 7.12 #45

Open kantuni opened 1 week ago

kantuni commented 1 week ago
module PhotoFolders exposing (main)

import Dict exposing (Dict)

should be

module PhotoFolders exposing (main)

import Browser
import Dict exposing (Dict)