elm-checkerboardgrid-tutorial
elm-checkerboardgrid-tutorial copied to clipboard
Tutorial on Container Components in Elm
Learning elm at the moment. This tutorial feels great. If I get pass the hurdles of getting it to compile on 0.17, I'll try to produce a pull request
The markdown had a line break causing the image to not show.
In Grid.elm (Before), there is the following view signature: ``` elm view : (Address childAction -> childState -> Html) -> Address (Action childAction) -> State childState -> Html ``` Why...
In Grid.elm, there's this type: ``` type Action childAction = ChildAction Int childAction ``` This looks like a [tagged union](http://elm-lang.org/guide/model-the-problem) type with only one union (no `|`). Is that what...
Following PR makes it easier to test the app locally. btw, Thanks for writing it ;)