aboutsummaryrefslogtreecommitdiff
path: root/client/src/Client.elm
blob: 1db70c7075d9f95280efb12deee3d626486465af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Client exposing (main)

import Browser
import Html

main : Program () () msg
main = Browser.element
    { init = \() -> ((), Cmd.none)
    , update = \_ model -> (model, Cmd.none)
    , subscriptions = \_ -> Sub.none
    , view = \model -> Html.h1 [] [Html.text "Hi"]
    }