aboutsummaryrefslogtreecommitdiff
path: root/client/src/Client.elm
diff options
context:
space:
mode:
authorJasper Van der Jeugt2020-07-29 16:33:53 +0200
committerJasper Van der Jeugt2020-07-29 16:33:53 +0200
commitd6265dd7f44538858989c1fe6837e1cafc489455 (patch)
treee2f909606b57a8e2e745fcae6453bf99928762a9 /client/src/Client.elm
parent780527946548c68bfcfc4d8a99abf06b66cf23c1 (diff)
Further client stub
Diffstat (limited to 'client/src/Client.elm')
-rw-r--r--client/src/Client.elm16
1 files changed, 12 insertions, 4 deletions
diff --git a/client/src/Client.elm b/client/src/Client.elm
index 1db70c7..77168c1 100644
--- a/client/src/Client.elm
+++ b/client/src/Client.elm
@@ -3,11 +3,19 @@ module Client exposing (main)
import Browser
import Html
-main : Program () () msg
-main = Browser.element
- { init = \() -> ((), Cmd.none)
+type Message
+ = Ignore
+
+main : Program () () Message
+main = Browser.application
+ { init = \() url key -> ((), Cmd.none)
, update = \_ model -> (model, Cmd.none)
, subscriptions = \_ -> Sub.none
- , view = \model -> Html.h1 [] [Html.text "Hi"]
+ , view = \model ->
+ { title = "Client"
+ , body = [Html.h1 [] [Html.text "Hi"]]
+ }
+ , onUrlChange = \url -> Ignore
+ , onUrlRequest = \urlRequest -> Ignore
}