Last active
November 28, 2020 13:57
-
-
Save vladbatushkov/8271e91c360ae9189e282b9f03fa543d to your computer and use it in GitHub Desktop.
eatnoteat element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main : Program Int Model Msg | |
main = | |
Browser.element | |
{ init = init | |
, view = view | |
, update = update | |
, subscriptions = subscriptions | |
} | |
init : Int -> ( Model, Cmd Msg ) | |
init width = | |
... | |
view : Model -> Html Msg | |
view model = | |
... | |
update : Msg -> Model -> ( Model, Cmd Msg ) | |
update action model = | |
... | |
subscriptions : Model -> Sub Msg | |
subscriptions model = | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment