This file contains 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
module Main exposing (..) | |
import Html exposing (Html, text) | |
import Html.Events exposing (onClick) | |
import Json.Decode exposing (..) | |
import Http | |
main = | |
Html.program { init = init, subscriptions = subscriptions, view = view, update = update } |