├── .gitignore ├── README.md ├── elm.js ├── elm.json ├── index.html ├── src ├── Main.elm ├── PhotoFolders.elm └── PhotoGallery.elm └── tests └── PhotoGrooveTests.elm /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/README.md -------------------------------------------------------------------------------- /elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/elm.js -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/elm.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/index.html -------------------------------------------------------------------------------- /src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/src/Main.elm -------------------------------------------------------------------------------- /src/PhotoFolders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/src/PhotoFolders.elm -------------------------------------------------------------------------------- /src/PhotoGallery.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/src/PhotoGallery.elm -------------------------------------------------------------------------------- /tests/PhotoGrooveTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/elm-in-action/HEAD/tests/PhotoGrooveTests.elm --------------------------------------------------------------------------------