Skip to content

Instantly share code, notes, and snippets.

@drathier
drathier / Main.elm
Last active June 29, 2019 13:34 — forked from owanturist/Main.elm
type FrontendMsg
= FNoop
| Increment
| Decrement
| OnBackendMsg ToFrontend
update : FrontendMsg -> Model -> ( Model, Cmd FrontendMsg )
update msg model =
case msg of
FNoop ->