Skip to content

Instantly share code, notes, and snippets.

View janlonden's full-sized avatar

Jan Londén janlonden

View GitHub Profile
import Browser
import Html exposing (Html, div, text)
import Html.Events exposing (onClick)
main =
Browser.sandbox
{ init = init
, update = update
, view = view
}